結果
問題 | No.1949 足し算するだけのパズルゲーム(2) |
ユーザー | phspls |
提出日時 | 2022-09-23 18:14:09 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 59 ms / 3,000 ms |
コード長 | 1,928 bytes |
コンパイル時間 | 13,194 ms |
コンパイル使用メモリ | 379,296 KB |
実行使用メモリ | 7,424 KB |
最終ジャッジ日時 | 2024-06-01 18:24:36 |
合計ジャッジ時間 | 15,200 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 1 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 1 ms
5,376 KB |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | AC | 29 ms
5,376 KB |
testcase_08 | AC | 12 ms
5,376 KB |
testcase_09 | AC | 32 ms
5,376 KB |
testcase_10 | AC | 28 ms
5,376 KB |
testcase_11 | AC | 33 ms
5,376 KB |
testcase_12 | AC | 31 ms
5,376 KB |
testcase_13 | AC | 27 ms
5,376 KB |
testcase_14 | AC | 31 ms
7,296 KB |
testcase_15 | AC | 30 ms
7,424 KB |
testcase_16 | AC | 7 ms
5,376 KB |
testcase_17 | AC | 59 ms
6,272 KB |
testcase_18 | AC | 7 ms
5,376 KB |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | AC | 1 ms
5,376 KB |
testcase_21 | AC | 1 ms
5,376 KB |
testcase_22 | AC | 41 ms
5,504 KB |
testcase_23 | AC | 1 ms
5,376 KB |
testcase_24 | AC | 15 ms
5,376 KB |
testcase_25 | AC | 23 ms
5,376 KB |
ソースコード
use std::{collections::BinaryHeap, cmp::Reverse}; const DX: [isize; 4] = [-1, 1, 0, 0]; const DY: [isize; 4] = [0, 0, -1, 1]; fn main() { let mut hwyx = String::new(); std::io::stdin().read_line(&mut hwyx).ok(); let hwyx: Vec<usize> = hwyx.trim().split_whitespace().map(|s| s.parse().unwrap()).collect(); let h = hwyx[0]; let w = hwyx[1]; let x = hwyx[2]-1; let y = hwyx[3]-1; let grid = (0..h).map(|_| { let mut temp = String::new(); std::io::stdin().read_line(&mut temp).ok(); let temp: Vec<usize> = temp.trim().split_whitespace().map(|s| s.parse().unwrap()).collect(); temp }) .collect::<Vec<Vec<usize>>>(); let mut checked = vec![vec![false; w]; h]; checked[x][y] = true; let mut frontier = BinaryHeap::new(); let mut player_attack = grid[x][y]; for dir in 0..4 { let nx = x as isize + DX[dir]; let ny = y as isize + DY[dir]; if nx >= 0 && ny >= 0 && nx < h as isize && ny < w as isize { let nx = nx as usize; let ny = ny as usize; if checked[nx][ny] { continue; } checked[nx][ny] = true; frontier.push((Reverse(grid[nx][ny]), (nx, ny))); } } while let Some((Reverse(attack), (cx, cy))) = frontier.pop() { if attack >= player_attack { println!("No"); return; } player_attack += attack; for dir in 0..4 { let nx = cx as isize + DX[dir]; let ny = cy as isize + DY[dir]; if nx >= 0 && ny >= 0 && nx < h as isize && ny < w as isize { let nx = nx as usize; let ny = ny as usize; if checked[nx][ny] { continue; } checked[nx][ny] = true; frontier.push((Reverse(grid[nx][ny]), (nx, ny))); } } } println!("Yes"); }