結果

問題 No.2948 move move rotti
ユーザー zeronosu77108zeronosu77108
提出日時 2024-10-25 21:45:21
言語 Rust
(1.77.0 + proconio)
結果
TLE  
実行時間 -
コード長 1,230 bytes
コンパイル時間 13,494 ms
コンパイル使用メモリ 401,392 KB
実行使用メモリ 10,532 KB
最終ジャッジ日時 2024-10-25 21:45:42
合計ジャッジ時間 19,881 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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![vec![false; n]; 1 << k];
    for (i, &x) in x.iter().enumerate() { dp[1 << i][x] = true; }
    for (i, &x) in x.iter().enumerate() {
        for s in 0..1 << k {
            dp[s | (1 << i)][x] |= dp[s][x];
        }
    }


    let mut ok = false;

    for s in 0..1 << k {
        let mut t = s;
        while t > 0 {
            for i in 0..n {
                for &u in g[i].iter() {
                    if !dp[s ^ t][u] { continue }
                    for &v in g[i].iter() {
                        if dp[s ^ t][u] && dp[t][v] {
                            dp[s][i] = true;
                        }
                    }
                }
            }
            t = (t - 1) & s;
        }
    }

    // for i in 0..1 << k {
    //     eprintln!("{:03b} {:?}", i, dp[i]);
    // }

    ok |= dp[(1 << k) - 1].iter().any(|&a| a);
    println!("{}", if ok { "Yes" } else { "No" })
}



0