結果

問題 No.2948 move move rotti
ユーザー zeronosu77108zeronosu77108
提出日時 2024-10-25 22:24:19
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 976 bytes
コンパイル時間 14,297 ms
コンパイル使用メモリ 402,004 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-25 22:24:48
合計ジャッジ時間 15,507 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 1 ms
6,816 KB
testcase_07 AC 1 ms
6,816 KB
testcase_08 AC 1 ms
6,816 KB
testcase_09 AC 1 ms
6,820 KB
testcase_10 AC 1 ms
6,820 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 1 ms
6,820 KB
testcase_14 AC 1 ms
6,820 KB
testcase_15 AC 1 ms
6,816 KB
testcase_16 WA -
testcase_17 AC 1 ms
6,816 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1 ms
6,816 KB
testcase_21 AC 1 ms
6,820 KB
testcase_22 AC 1 ms
6,816 KB
testcase_23 AC 1 ms
6,816 KB
testcase_24 AC 1 ms
6,820 KB
testcase_25 AC 1 ms
6,816 KB
testcase_26 AC 1 ms
6,820 KB
testcase_27 AC 1 ms
6,816 KB
testcase_28 AC 1 ms
6,820 KB
testcase_29 AC 1 ms
6,816 KB
testcase_30 AC 1 ms
6,816 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
warning: unused variable: `x`
  --> src/main.rs:27:18
   |
27 |         for (i, &x) in x.iter().enumerate() {
   |                  ^ help: if this is intentional, prefix it with an underscore: `_x`
   |
   = note: `#[warn(unused_variables)]` on by default

ソースコード

diff #

use proconio::input;
use proconio::marker::Usize1;

fn main() {
    input! {
        n : usize,
        m : usize,
        k : usize,
        x : [Usize1; k],
        edges : [(Usize1, Usize1); m]
    }

    let mut g = vec![vec![]; n];
    for (u, v) in edges {
        g[u].push(v);
        g[v].push(u);
    }

    let mut dp = vec![0; k];
    for (i, &x) in x.iter().enumerate() {
        dp[i] |= 1 << x;
    }

    let mut ok = dp.iter().fold(!0, |acc, &x| acc & x) > 0;
    for _ in 0..n {
        let mut next = vec![0; k];
        for (i, &x) in x.iter().enumerate() {
            for j in 0..n {
                if dp[i] >> j & 1 == 0 { continue; }
                for &k in g[j].iter() {
                    if dp[i] >> k & 1 == 1 { continue; }
                    next[i] |= 1 << k;
                }
            }
        }
        dp = next;
        ok |= dp.iter().fold(!0, |acc, &x| acc & x) > 0;
    }


    println!("{}", if ok { "Yes" } else { "No" })
}



0