結果

問題 No.2948 move move rotti
ユーザー ooaiuooaiu
提出日時 2024-11-22 16:46:52
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 159 ms / 4,000 ms
コード長 1,189 bytes
コンパイル時間 3,683 ms
コンパイル使用メモリ 257,504 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-22 16:46:59
合計ジャッジ時間 6,583 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 65 ms
5,248 KB
testcase_04 AC 11 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 12 ms
5,248 KB
testcase_08 AC 159 ms
5,248 KB
testcase_09 AC 159 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 5 ms
5,248 KB
testcase_13 AC 7 ms
5,248 KB
testcase_14 AC 6 ms
5,248 KB
testcase_15 AC 21 ms
5,248 KB
testcase_16 AC 125 ms
5,248 KB
testcase_17 AC 58 ms
5,248 KB
testcase_18 AC 109 ms
5,248 KB
testcase_19 AC 35 ms
5,248 KB
testcase_20 AC 54 ms
5,248 KB
testcase_21 AC 157 ms
5,248 KB
testcase_22 AC 17 ms
5,248 KB
testcase_23 AC 110 ms
5,248 KB
testcase_24 AC 12 ms
5,248 KB
testcase_25 AC 21 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 4 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

void solve() {
    int N, M, K;
    cin >> N >> M >> K;
    vector<int> X(K);
    for (int i = 0; i < K; i++) cin >> X[i], X[i]--;
    vector<vector<int>> G(N);
    for (int i = 0; i < M; i++) {
        int a, b;
        cin >> a >> b;
        a--; b--;
        G[a].push_back(b);
        G[b].push_back(a);
    }
    const int S = 1 << N;
    vector<int> res(N, S - 1);
    for(int t = 0; t < K; t++) {
        vector<vector<bool>> dp(N, vector<bool>(S));
        dp[X[t]][1 << (X[t])] = 1;
        vector<int> T(N);
        for(int s = 0; s < S; s++) for(int i = 0; i < N; i++) if(dp[i][s]) {
            T[std::popcount((unsigned)s) - 1] |= 1 << i;
            for(int nv: G[i]) if(!(s >> nv & 1)) dp[nv][s | (1 << nv)] = 1;
        }
        for(int i = 0; i < N; i++) res[i] &= T[i];
    }
    for(int i = 0; i < N; i++) if(res[i]) {
        cout << "Yes\n";return;
    }
    cout << "No\n";
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while (tt--) {
        solve();
    }
}
0