結果

問題 No.408 五輪ピック
ユーザー saltcandy123saltcandy123
提出日時 2024-08-09 23:20:14
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 682 bytes
コンパイル時間 12,549 ms
コンパイル使用メモリ 405,196 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-09 23:20:31
合計ジャッジ時間 14,680 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 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 6 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 7 ms
5,376 KB
testcase_08 AC 6 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 5 ms
5,376 KB
testcase_12 AC 8 ms
5,376 KB
testcase_13 AC 7 ms
5,376 KB
testcase_14 WA -
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 7 ms
5,376 KB
testcase_18 AC 7 ms
5,376 KB
testcase_19 AC 9 ms
5,376 KB
testcase_20 AC 3 ms
5,376 KB
testcase_21 AC 2 ms
5,376 KB
testcase_22 AC 5 ms
5,376 KB
testcase_23 AC 10 ms
5,376 KB
testcase_24 WA -
testcase_25 AC 6 ms
5,376 KB
testcase_26 AC 8 ms
5,376 KB
testcase_27 AC 6 ms
5,376 KB
testcase_28 AC 4 ms
5,376 KB
testcase_29 AC 5 ms
5,376 KB
testcase_30 WA -
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    proconio::input! {
        n: usize,
        m: usize,
        ab: [(usize, usize); m],
    }
    let graph = {
        let mut g = vec![vec![]; n];
        for (a, b) in ab {
            g[a - 1].push(b - 1);
            g[b - 1].push(a - 1);
        }
        g
    };
    let mut exists = vec![vec![false; n]; 6];
    exists[0][0] = true;
    for len in 1..=5 {
        for ni in 0..n {
            if !exists[len - 1][ni] {
                continue;
            }
            for &nj in &graph[ni] {
                exists[len][nj] = true;
            }
        }
    }
    if exists[5][0] {
        println!("YES");
    } else {
        println!("NO");
    }
}
0