結果

問題 No.2948 move move rotti
ユーザー nononnonon
提出日時 2024-10-26 08:55:54
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,780 ms / 4,000 ms
コード長 1,345 bytes
コンパイル時間 3,284 ms
コンパイル使用メモリ 256,156 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-10-26 08:56:14
合計ジャッジ時間 20,075 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 76 ms
6,824 KB
testcase_04 AC 771 ms
6,820 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 795 ms
6,816 KB
testcase_08 AC 2,780 ms
6,820 KB
testcase_09 AC 188 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 5 ms
6,816 KB
testcase_13 AC 369 ms
6,816 KB
testcase_14 AC 342 ms
6,816 KB
testcase_15 AC 28 ms
6,820 KB
testcase_16 AC 149 ms
6,820 KB
testcase_17 AC 71 ms
6,816 KB
testcase_18 AC 143 ms
6,816 KB
testcase_19 AC 813 ms
6,820 KB
testcase_20 AC 1,380 ms
6,816 KB
testcase_21 AC 2,763 ms
6,820 KB
testcase_22 AC 893 ms
6,816 KB
testcase_23 AC 2,133 ms
6,820 KB
testcase_24 AC 792 ms
6,820 KB
testcase_25 AC 945 ms
6,820 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 6 ms
6,816 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 3 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    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 u, v;
        cin >> u >> v;
        u--, v--;
        G[u].push_back(v);
        G[v].push_back(u);
    }
    for (int t = 0; t < N; t++) {
        long long bit_all = 0;
        bit_all = ~bit_all;
        for (int i = 0; i < K; i++) {
            long long bit_i = 0;
            vector<vector<bool>> dp(1 << N, vector<bool>(N, false));
            dp[1 << X[i]][X[i]] = true;
            for (int bit = 0; bit < 1 << N; bit++) {
                for (int u = 0; u < N; u++) {
                    if (!dp[bit][u]) continue;
                    if (u == t) bit_i |= 1LL << __builtin_popcount(bit);
                    for (int v : G[u]) {
                        if ((bit >> v & 1) == 0) {
                            dp[bit ^ (1 << v)][v] = true;
                        }
                    }
                }
            }
            bit_all &= bit_i;
        }
        if (__builtin_popcountll(bit_all)) {
            cout << "Yes" << endl;
            return 0;
        }
    }
    cout << "No" << endl;
}
0