-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeautiful_matrix.rs
56 lines (51 loc) · 1.29 KB
/
beautiful_matrix.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
use std::collections::VecDeque;
use std::io;
struct Scan {
buffer: VecDeque<String>,
}
impl Scan {
fn new() -> Scan {
Scan {
buffer: VecDeque::new(),
}
}
fn next_line(&self) -> io::Result<String> {
let mut line = String::new();
match io::stdin().read_line(&mut line)? {
0 => Err(io::Error::new(io::ErrorKind::Other, "EOF")),
_ => Ok(line),
}
}
fn next<T: std::str::FromStr>(&mut self) -> T {
loop {
if let Some(token) = self.buffer.pop_front() {
match token.parse() {
Ok(x) => {
return x;
}
_ => {
panic!("parse");
}
}
}
let line = self.next_line().unwrap();
self.buffer = line.split_whitespace().map(String::from).collect();
}
}
}
fn main() -> io::Result<()> {
let mut scan = Scan::new();
let mut x = 0isize;
let mut y = 0isize;
for i in 1..=5 {
for j in 1..=5 {
let v: isize = scan.next();
if v == 1 {
x = i;
y = j;
}
}
}
println!("{}", (3 - x).abs() + (3 - y).abs());
Ok(())
}