結果

問題 No.1588 Connection
ユーザー phsplsphspls
提出日時 2022-10-27 12:12:23
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 1,222 bytes
コンパイル時間 12,524 ms
コンパイル使用メモリ 384,588 KB
実行使用メモリ 25,476 KB
平均クエリ数 332.22
最終ジャッジ日時 2024-07-04 22:14:58
合計ジャッジ時間 16,384 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
24,964 KB
testcase_01 AC 22 ms
25,476 KB
testcase_02 AC 21 ms
25,220 KB
testcase_03 AC 23 ms
25,220 KB
testcase_04 AC 22 ms
24,964 KB
testcase_05 AC 23 ms
24,836 KB
testcase_06 AC 24 ms
24,836 KB
testcase_07 AC 23 ms
24,580 KB
testcase_08 AC 23 ms
24,964 KB
testcase_09 AC 24 ms
25,220 KB
testcase_10 AC 25 ms
25,220 KB
testcase_11 AC 26 ms
25,220 KB
testcase_12 AC 52 ms
25,476 KB
testcase_13 AC 52 ms
24,580 KB
testcase_14 AC 23 ms
25,220 KB
testcase_15 AC 23 ms
24,964 KB
testcase_16 AC 23 ms
24,836 KB
testcase_17 AC 22 ms
24,580 KB
testcase_18 AC 23 ms
25,220 KB
testcase_19 AC 22 ms
25,220 KB
testcase_20 AC 25 ms
24,836 KB
testcase_21 AC 84 ms
24,580 KB
testcase_22 AC 85 ms
24,580 KB
testcase_23 AC 48 ms
24,824 KB
testcase_24 AC 36 ms
25,220 KB
testcase_25 AC 56 ms
25,220 KB
testcase_26 AC 54 ms
25,220 KB
testcase_27 AC 36 ms
24,580 KB
testcase_28 AC 31 ms
24,836 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 23 ms
25,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use std::collections::VecDeque;


fn main() {
    let mut nm = String::new();
    std::io::stdin().read_line(&mut nm).ok();
    let nm: Vec<usize> = nm.trim().split_whitespace().map(|s| s.parse().unwrap()).collect();
    let n = nm[0];
    let m = nm[1];
    if 2*n-1 > m {
        println!("No");
        return;
    }

    let mut grid = vec![vec![2usize; n]; n];
    grid[0][0] = 1;
    let mut cnt = 0usize;
    let mut deque = VecDeque::new();
    deque.push_back((0, 1));
    deque.push_back((1, 0));
    while let Some((x, y)) = deque.pop_front() {
        if grid[x][y] < 2 {
            continue;
        }
        println!("{} {}", x+1, y+1);
        let mut temp = String::new();
        std::io::stdin().read_line(&mut temp).ok();
        let temp = temp.trim();
        if temp == "White" {
            grid[x][y] = 0;
        } else {
            grid[x][y] = 1;
            if x+1 < n && grid[x+1][y] == 2 {
                deque.push_front((x+1, y));
            }
            if y+1 < n && grid[x][y+1] == 2 {
                deque.push_front((x, y+1));
            }
        }
        cnt += 1;
        if cnt == 3000 { break; }
    }
    println!("{}", if grid[n-1][n-1] == 1 { "Yes" } else { "No" });
}
0