| Task: | Hypyt |
| Sender: | vulpesomnia |
| Submission time: | 2025-11-06 00:34:27 +0200 |
| Language: | Rust (2021) |
| Status: | READY |
| Result: | 30 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 10 |
| #2 | ACCEPTED | 20 |
| #3 | WRONG ANSWER | 0 |
| #4 | WRONG ANSWER | 0 |
| #5 | WRONG ANSWER | 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 | 1.00 s | 2, 5 | details |
| #7 | ACCEPTED | 0.52 s | 2, 5 | details |
| #8 | ACCEPTED | 0.19 s | 2, 5 | details |
| #9 | ACCEPTED | 0.34 s | 3, 4, 5 | details |
| #10 | ACCEPTED | 0.34 s | 3, 4, 5 | details |
| #11 | WRONG ANSWER | 0.33 s | 3, 4, 5 | details |
| #12 | ACCEPTED | 0.41 s | 4, 5 | details |
| #13 | ACCEPTED | 0.39 s | 4, 5 | details |
| #14 | WRONG ANSWER | 0.34 s | 4, 5 | details |
| #15 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #16 | ACCEPTED | 0.98 s | 5 | details |
| #17 | ACCEPTED | 0.61 s | 5 | details |
| #18 | WRONG ANSWER | 0.49 s | 5 | details |
| #19 | ACCEPTED | 0.40 s | 5 | details |
| #20 | ACCEPTED | 0.41 s | 5 | details |
| #21 | ACCEPTED | 0.36 s | 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 | ACCEPTED | 0.33 s | 5 | details |
| #25 | ACCEPTED | 0.30 s | 5 | details |
| #26 | TIME LIMIT EXCEEDED | -- | 5 | details |
| #27 | ACCEPTED | 0.32 s | 5 | details |
Compiler report
warning: type `u256` should have an upper camel case name
--> input/code.rs:20:8
|
20 | struct u256 {
| ^^^^ help: convert the identifier to upper camel case (notice the capitalization): `U256`
|
= note: `#[warn(non_camel_case_types)]` on by default
warning: method `combine` is never used
--> input/code.rs:39:8
|
24 | impl u256 {
| --------- method in this implementation
...
39 | fn combine(&mut self, other: &Self) {
| ^^^^^^^
|
= note: `#[warn(dead_code)]` on by default
warning: 2 warnings emittedCode
//use std::collections::HashSet;
use std::collections::VecDeque;
use std::collections::BTreeSet;
use std::cmp::min;
use std::io;
#[derive(Clone, PartialEq, Debug)]
enum Tile {
Safe,
Monster,
}
struct Node {
//_id: usize,
// usize on id of node(row) ja hashset on sarakkeet.
edges: Vec<BTreeSet<usize>>,
}
struct u256 {
data: [u64; 4],
}
impl u256 {
fn new() -> Self {
Self { data: [0; 4] }
}
fn set(&mut self, bit: usize) { // set to one
let (block, index) = (bit / 64, bit % 64);
self.data[block] |= 1 << index;
}
fn is_one(&mut self, bit: usize) -> bool {
let (block, index) = (bit / 64, bit % 64);
(self.data[block] & (1 << index)) != 0
}
fn combine(&mut self, other: &Self) {
for block in 0..4 {
self.data[block] = self.data[block] | other.data[block];
}
}
}
const INF: usize = 10_usize.pow(5);
fn main() {
let mut input = String::new();
io::stdin()
.read_line(&mut input)
.expect("failed to readline");
let mut iter = input.split_whitespace();
let (height, width, query_count): (usize, usize, i32) = (
iter.next().unwrap().parse().unwrap(),
iter.next().unwrap().parse().unwrap(),
iter.next().unwrap().parse().unwrap(),
);
let mut graph: Vec<Node> = Vec::new();
// Get all indexes for each row. O(n^2)
let mut map: Vec<Vec<Tile>> = vec![vec![Tile::Monster; width]; height];
for h in 0..height {
let mut line = String::new();
io::stdin().read_line(&mut line).expect("failed");
graph.push(Node {
// _id: h,
edges: vec![BTreeSet::new(); height],
});
for (i, c) in line.chars().enumerate() {
if c == '.' {
map[h][i] = Tile::Safe;
}
}
}
// Create graph from overlapping indexes. O(n^3)
for r1 in 0..height {
for r2 in 0..height {
if r1 != r2 {
for i in 0..width {
if map[r1][i] == Tile::Safe && map[r1][i] == map[r2][i] {
if graph[r1].edges[r2].is_empty() {
let set = BTreeSet::from([i]);
graph[r1].edges[r2] = set;
} else {
graph[r1].edges[r2].insert(i);
}
}
}
}
}
}
let mut answer_map: Vec<Vec<(usize, Vec<(&BTreeSet<usize>, &BTreeSet<usize>)>)>> = vec![vec![(INF, Vec::new()); height]; height];
for r1 in 0..graph.len() {
answer_map[r1] = bfs(r1, &graph);
}
//print_map(&graph);
for _ in 0..query_count {
let mut query = String::new();
io::stdin()
.read_line(&mut query)
.expect("failed to readline");
let mut iter = query.split_whitespace();
let (y1, x1, y2, x2): (usize, usize, usize, usize) = (
iter.next().unwrap().parse().unwrap(),
iter.next().unwrap().parse().unwrap(),
iter.next().unwrap().parse().unwrap(),
iter.next().unwrap().parse().unwrap(),
);
if x1 == x2 && y1 == y2 {
println!("{}", 0);
} else if x1 == x2 || y1 == y2 {
println!("{}", 1);
} else {
let mut n1 = (y1 - 1, x1 - 1);
let mut n2 = (y2 - 1, x2 - 1);
let mut start_end_pairs = &answer_map[n1.0][n2.0].1;
if start_end_pairs.is_empty() {
n1 = (y2 - 1, x2 - 1);
n2 = (y1 - 1, x1 - 1);
start_end_pairs = &answer_map[n1.0][n2.0].1;
}
let depth = answer_map[n1.0][n2.0].0;
if !start_end_pairs.is_empty() {
let mut leaps = INF;
for pair in start_end_pairs {
let start_column = pair.0.contains(&(n1.1));
let end_column = pair.1.contains(&(n2.1));
if (start_column && end_column) && depth == 1 {
if n1.1 == n2.1 {
leaps = 0;
} else {
leaps = 1;
}
} else {
set_leaps(start_column, end_column, &mut leaps);
}
}
println!("{}", leaps + 2 * depth - 1);
} else {
println!("{}", -1);
}
}
}
}
#[inline]
fn set_leaps(start_column: bool, end_column: bool, leaps: &mut usize) {
if (!start_column && end_column) || (start_column && !end_column) {
*leaps = min(*leaps, 1);
} else if !start_column && !end_column {
*leaps = min(*leaps, 2);
} else {
*leaps = min(*leaps, 0);
}
}
fn bfs(root_node: usize, graph: &Vec<Node>) -> Vec<(usize, Vec<(&BTreeSet<usize>, &BTreeSet<usize>)>)> {
let mut start_end_pairs: Vec<(usize, Vec<(&BTreeSet<usize>, &BTreeSet<usize>)>)> = vec![(INF, Vec::new()); graph.len()];
let mut depth = 0;
// Then use BFS:
let mut queue: VecDeque<(usize, usize)> = VecDeque::with_capacity(graph.len());
let mut explored_nodes: u256 = u256::new();
explored_nodes.set(root_node);
queue.push_front((root_node, 0));
while !queue.is_empty() {
depth += 1;
let mut level_size = queue.len();
/*println!("# - - - - - #");
println!("DEPTH: {:?}", depth);
println!("QUEUE: {:?} WHICH IS LEN: {:?}", queue, level_size);
println!("# - - - - - #");
println!("{:?}", explored_nodes);*/
// let mut temp_explored_nodes: u256 = u256::new();
while level_size > 0 {
/*println!("{}", level_size);*/
// current_row, start_row
let current: (usize, usize) = *queue.front().unwrap();
// println!("CURRENT: {:?}", current);
queue.pop_front();
for (index, adj_node) in graph[current.0].edges.iter().enumerate() {
// If it is target_node.
if !adj_node.is_empty() {
if !explored_nodes.is_one(index) {
/* println!("THIS IS TARGET:");
println!("Adjacent node: {:?}", adj_node);*/
let end_columns = adj_node;
/* println!("END_COLUMNS: {:?} ", adj_node.1);
println!("END_COLUMN: {}", end_column);*/
start_end_pairs[index].0 = depth;
if depth == 1 {
let start_columns = &graph[index].edges[current.0];
/* println!("START_COLUMNS: {:?} ", graph[*adj_node.0].edges[¤t.0]);
println!("START_COLUMN: {}", start_column);*/
start_end_pairs[index].1.push((start_columns, end_columns));
} else {
let start_columns = &graph[current.1].edges[root_node];
/*println!("START_COLUMNS: {:?} ", current.1);
println!("START_COLUMN: {}", start_column);*/
start_end_pairs[index].1.push((start_columns, end_columns));
}
//println!("Adjacent node: {:?}", adj_node);
if current.0 == root_node {
queue.push_front((index, index));
} else {
queue.push_back((index, current.1)); // kinda needed for
// levels
}
explored_nodes.set(index);
}
}
}
level_size -= 1;
}
//explored_nodes.combine(&temp_explored_nodes);
}
return start_end_pairs;
}
/*fn print_map(map: &Vec<Node>) {
println!("Node and its edges:");
let size = map.len();
for i in 0..size {
let mut line = String::new();
line.push_str(format!("{:?}", map[i].edges).as_str());
/*line.push_str("(");
for j in 0..size {
line.push_str(map[i].edges[j]);
line.push_str(" ");
}*/
line.push_str(")");
println!("{}", line);
}
println!("END!");
/*println!("Map for how many columns from starting to end row, but at the end:");
for i in 0..size {
let mut line = String::new();
for j in 0..size {
let size2 = map[i][j].1.len();
line.push_str("( ");
for c in 0..size2 {
line.push_str(map[i][j].1[c]1.to_string().as_str());
line.push_str(" ");
}
line.push_str(" )");
}
println!("{}", line);
}*/
}*/
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: ACCEPTED
| input |
|---|
| 40 40 200000 ...*.**.*..*.............*.*..... |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| 2 2 2 2 2 ... |
Test 10
Group: 3, 4, 5
Verdict: ACCEPTED
| input |
|---|
| 40 40 200000 **.**..*.*.*.******....****.*.... |
| correct output |
|---|
| 2 1 3 2 2 ... |
| user output |
|---|
| 2 1 3 2 2 ... |
Test 11
Group: 3, 4, 5
Verdict: WRONG ANSWER
| input |
|---|
| 40 40 200000 .*.*.**.*****.***.*.****.**.**... |
| correct output |
|---|
| 3 3 3 3 3 ... |
| user output |
|---|
| 3 3 3 3 5 ... |
Feedback: Incorrect character on line 5 col 1: expected "3", got "5"
Test 12
Group: 4, 5
Verdict: ACCEPTED
| input |
|---|
| 80 80 200000 *....**.***..****...*.....*...... |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| 2 2 2 2 2 ... |
Test 13
Group: 4, 5
Verdict: ACCEPTED
| input |
|---|
| 80 80 200000 .***.*..*.***..*****....**...*... |
| correct output |
|---|
| 3 2 2 3 2 ... |
| user output |
|---|
| 3 2 2 3 2 ... |
Test 14
Group: 4, 5
Verdict: WRONG ANSWER
| input |
|---|
| 80 80 200000 *******.*****.*..*..****...***... |
| correct output |
|---|
| 2 3 1 2 2 ... |
| user output |
|---|
| 2 3 1 2 2 ... |
Feedback: Incorrect character on line 147 col 1: expected "3", got "5"
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: ACCEPTED
| input |
|---|
| 250 250 200000 ..*....*..*......*.**.*.*..***... |
| correct output |
|---|
| 2 2 2 2 2 ... |
| user output |
|---|
| 2 2 2 2 2 ... |
Test 17
Group: 5
Verdict: ACCEPTED
| input |
|---|
| 250 250 200000 *..*.*****.*********.****.****... |
| correct output |
|---|
| 3 3 2 2 2 ... |
| user output |
|---|
| 3 3 2 2 2 ... |
Test 18
Group: 5
Verdict: WRONG ANSWER
| input |
|---|
| 250 250 200000 *********.**********.******.**... |
| correct output |
|---|
| 3 3 3 3 3 ... |
| user output |
|---|
| 3 3 3 3 3 ... |
Feedback: Incorrect character on line 105 col 1: expected "3", got "5"
Test 19
Group: 5
Verdict: ACCEPTED
| input |
|---|
| 250 250 200000 .*****************************... |
| correct output |
|---|
| 104 422 145 93 65 ... |
| user output |
|---|
| 104 422 145 93 65 ... |
Test 20
Group: 5
Verdict: ACCEPTED
| input |
|---|
| 250 250 200000 ..****************************... |
| correct output |
|---|
| 57 155 38 65 98 ... |
| user output |
|---|
| 57 155 38 65 98 ... |
Test 21
Group: 5
Verdict: ACCEPTED
| input |
|---|
| 250 250 200000 .*****************************... |
| correct output |
|---|
| 498 498 498 498 498 ... |
| user output |
|---|
| 498 498 498 498 498 ... |
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: ACCEPTED
| input |
|---|
| 250 1 200000 * . * . ... |
| correct output |
|---|
| 1 1 1 1 1 ... |
| user output |
|---|
| 1 1 1 1 1 ... |
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 ... |
