| Task: | Hypyt |
| Sender: | ma100 |
| Submission time: | 2025-11-09 21:13:27 +0200 |
| Language: | Rust (2021) |
| Status: | READY |
| Result: | 30 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 10 |
| #2 | ACCEPTED | 20 |
| #3 | TIME LIMIT EXCEEDED | 0 |
| #4 | TIME LIMIT EXCEEDED | 0 |
| #5 | TIME LIMIT EXCEEDED | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #2 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #3 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #4 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #5 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #6 | ACCEPTED | 0.15 s | 2, 5 | details |
| #7 | ACCEPTED | 0.11 s | 2, 5 | details |
| #8 | ACCEPTED | 0.10 s | 2, 5 | details |
| #9 | TIME LIMIT EXCEEDED | -- | 3, 4, 5 | details |
| #10 | TIME LIMIT EXCEEDED | -- | 3, 4, 5 | details |
| #11 | TIME LIMIT EXCEEDED | -- | 3, 4, 5 | details |
| #12 | TIME LIMIT EXCEEDED | -- | 4, 5 | details |
| #13 | TIME LIMIT EXCEEDED | -- | 4, 5 | details |
| #14 | TIME LIMIT EXCEEDED | -- | 4, 5 | details |
| #15 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #16 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #17 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #18 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #19 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #20 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #21 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #22 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #23 | ACCEPTED | 0.00 s | 1, 2, 3, 4, 5 | details |
| #24 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #25 | ACCEPTED | 0.52 s | 5 | details |
| #26 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #27 | ACCEPTED | 0.29 s | 5 | details |
Code
use std::collections::VecDeque;
use std::io::{BufRead, Write, stdin, stdout};
fn read_next<'a, I>(iter: &mut I) -> usize
where
I: Iterator<Item = &'a str>,
{
iter.next()
.expect("invalid input")
.parse::<usize>()
.expect("invalid integer")
}
type Coords = (u8, u8);
struct Node {
location: Coords,
depth: u64,
from_start: bool,
}
fn path_find(
start: Coords,
end: Coords,
row_options: &Vec<Vec<Coords>>,
col_options: &Vec<Vec<Coords>>,
x_len: usize,
y_len: usize,
) -> Option<u64> {
if start == end {
return Some(0);
}
let mut search_queue: VecDeque<Node> = VecDeque::from([
Node {
location: start,
depth: 0,
from_start: true,
},
Node {
location: end,
depth: 0,
from_start: false,
},
]);
let mut dist_begin: Vec<Vec<u64>> = vec![vec![u64::MAX; x_len]; y_len];
dist_begin[start.1 as usize][start.0 as usize] = 0;
let mut dist_end: Vec<Vec<u64>> = vec![vec![u64::MAX; x_len]; y_len];
dist_end[end.1 as usize][end.0 as usize] = 0;
while let Some(node) = search_queue.pop_front() {
// Possible next directions
for next in [
&row_options[node.location.1 as usize],
&col_options[node.location.0 as usize],
] {
for el in next {
if *el == node.location {
continue;
}
let value = node.depth + 1;
if node.from_start {
if dist_end[el.1 as usize][el.0 as usize] != u64::MAX {
return Some(value + dist_end[el.1 as usize][el.0 as usize]);
}
if dist_begin[el.1 as usize][el.0 as usize] == u64::MAX {
search_queue.push_back(Node {
location: *el,
depth: value,
from_start: node.from_start,
});
dist_begin[el.1 as usize][el.0 as usize] = value;
}
} else {
if dist_begin[el.1 as usize][el.0 as usize] != u64::MAX {
return Some(value + dist_begin[el.1 as usize][el.0 as usize]);
}
if dist_end[el.1 as usize][el.0 as usize] == u64::MAX {
search_queue.push_back(Node {
location: *el,
depth: value,
from_start: node.from_start,
});
dist_end[el.1 as usize][el.0 as usize] = value;
}
}
}
}
}
None
}
fn main() {
let mut input = stdin().lock();
let mut nmq = String::new();
input.read_line(&mut nmq).expect("failed to read line");
let mut nmq = nmq.split_ascii_whitespace();
let n = read_next(&mut nmq) as u8;
let m = read_next(&mut nmq) as u8;
let q = read_next(&mut nmq) as u32;
let mut grid: Vec<Vec<bool>> = vec![vec![false; m as usize]; n as usize];
for y in 0..n {
let mut line = String::new();
input.read_line(&mut line).expect("failed to read line");
for (x, chr) in line.trim().chars().enumerate() {
grid[y as usize][x as usize] = chr == '.';
}
}
let mut options_per_row: Vec<Vec<Coords>> = vec![Vec::new(); n as usize];
let mut options_per_col: Vec<Vec<Coords>> = vec![Vec::new(); m as usize];
for (y, row) in grid.iter().enumerate() {
for (x, allowed) in row.iter().enumerate() {
if *allowed {
options_per_row[y].push((x as u8, y as u8));
options_per_col[x].push((x as u8, y as u8));
}
}
}
let mut xys = String::with_capacity(8);
let mut lock = stdout().lock();
for _ in 0..q {
input.read_line(&mut xys).expect("failed to read line");
let mut split = xys.split_ascii_whitespace();
let y1 = (read_next(&mut split) - 1) as u8;
let x1 = (read_next(&mut split) - 1) as u8;
let y2 = (read_next(&mut split) - 1) as u8;
let x2 = (read_next(&mut split) - 1) as u8;
let _ = match path_find(
(x1, y1),
(x2, y2),
&options_per_row,
&options_per_col,
m as usize,
n as usize,
) {
Some(i) => writeln!(lock, "{}", i),
None => writeln!(lock, "-1"),
};
xys.clear();
}
}
Test details
Test 1 (public)
Group: 1, 2, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 4 6 5 .*.*** *...** *****. *..*.* ... |
| correct output |
|---|
| 1 0 3 3 -1 |
| user output |
|---|
| 1 0 3 3 -1 |
Test 2
Group: 1, 2, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 10 10 10 .......... .....*.... ........*. *.*....*.. ... |
| correct output |
|---|
| 1 2 1 2 2 ... |
| user output |
|---|
| 1 2 1 2 2 ... |
Test 3
Group: 1, 2, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 10 10 10 *...***.** *****.*... **..**.**. ..**.**.*. ... |
| correct output |
|---|
| 1 2 2 1 2 ... |
| user output |
|---|
| 1 2 2 1 2 ... |
Test 4
Group: 1, 2, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 10 10 10 ***.*.**** ********** *.******** .*.***.**. ... |
| correct output |
|---|
| 3 4 2 3 4 ... |
| user output |
|---|
| 3 4 2 3 4 ... |
Test 5
Group: 1, 2, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 10 10 1 .****.**** **.**..*** ********** *******..* ... |
| correct output |
|---|
| 7 |
| user output |
|---|
| 7 |
Test 6
Group: 2, 5
Verdict: ACCEPTED
| input |
|---|
| 250 250 250 .*...*.....*******..**...*....... |
| correct output |
|---|
| 2 3 3 2 2 ... |
| user output |
|---|
| 2 3 3 2 2 ... |
Test 7
Group: 2, 5
Verdict: ACCEPTED
| input |
|---|
| 250 250 250 ...*......**.**.*.*..**..*..**... |
| correct output |
|---|
| 2 2 2 2 3 ... |
| user output |
|---|
| 2 2 2 2 3 ... |
Test 8
Group: 2, 5
Verdict: ACCEPTED
| input |
|---|
| 250 250 250 **..**..****.****.*.***.***..*... |
| correct output |
|---|
| 2 3 3 3 3 ... |
| user output |
|---|
| 2 3 3 3 3 ... |
Test 9
Group: 3, 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 40 40 200000 ...*.**.*..*.............*.*..... |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| (empty) |
Test 10
Group: 3, 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 40 40 200000 **.**..*.*.*.******....****.*.... |
| correct output |
|---|
| 2 1 3 2 2 ... |
| user output |
|---|
| (empty) |
Test 11
Group: 3, 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 40 40 200000 .*.*.**.*****.***.*.****.**.**... |
| correct output |
|---|
| 3 3 3 3 3 ... |
| user output |
|---|
| (empty) |
Test 12
Group: 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 80 80 200000 *....**.***..****...*.....*...... |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| (empty) |
Test 13
Group: 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 80 80 200000 .***.*..*.***..*****....**...*... |
| correct output |
|---|
| 3 2 2 3 2 ... |
| user output |
|---|
| (empty) |
Test 14
Group: 4, 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 80 80 200000 *******.*****.*..*..****...***... |
| correct output |
|---|
| 2 3 1 2 2 ... |
| user output |
|---|
| (empty) |
Test 15
Group: 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 250 250 200000 *....*..*..*..**..*.........**... |
| correct output |
|---|
| 3 2 2 2 2 ... |
| user output |
|---|
| (empty) |
Test 16
Group: 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 250 250 200000 ..*....*..*......*.**.*.*..***... |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| (empty) |
Test 17
Group: 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 250 250 200000 *..*.*****.*********.****.****... |
| correct output |
|---|
| 3 3 2 2 2 ... |
| user output |
|---|
| (empty) |
Test 18
Group: 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 250 250 200000 *********.**********.******.**... |
| correct output |
|---|
| 3 3 3 3 3 ... |
| user output |
|---|
| (empty) |
Test 19
Group: 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 250 250 200000 .*****************************... |
| correct output |
|---|
| 104 422 145 93 65 ... |
| user output |
|---|
| (empty) |
Test 20
Group: 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 250 250 200000 ..****************************... |
| correct output |
|---|
| 57 155 38 65 98 ... |
| user output |
|---|
| (empty) |
Test 21
Group: 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 250 250 200000 .*****************************... |
| correct output |
|---|
| 498 498 498 498 498 ... |
| user output |
|---|
| (empty) |
Test 22
Group: 1, 2, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 10 1 10 * * . * ... |
| correct output |
|---|
| 0 1 1 0 0 ... |
| user output |
|---|
| 0 1 1 0 0 ... |
Test 23
Group: 1, 2, 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 1 10 10 ........*. 1 7 1 10 1 4 1 7 1 5 1 1 ... |
| correct output |
|---|
| 1 1 1 1 1 ... |
| user output |
|---|
| 1 1 1 1 1 ... |
Test 24
Group: 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 250 1 200000 * . * . ... |
| correct output |
|---|
| 1 1 1 1 1 ... |
| user output |
|---|
| (empty) |
Test 25
Group: 5
Verdict: ACCEPTED
| input |
|---|
| 1 250 200000 *.*.*...*.*.**.***..**.*.*..**... |
| correct output |
|---|
| 1 1 1 1 1 ... |
| user output |
|---|
| 1 1 1 1 1 ... |
Test 26
Group: 5
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 250 250 200000 ................................. |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| (empty) |
Test 27
Group: 5
Verdict: ACCEPTED
| input |
|---|
| 250 250 200000 ******************************... |
| correct output |
|---|
| 0 0 0 0 0 ... |
| user output |
|---|
| 0 0 0 0 0 ... |
