結果

問題 No.2948 move move rotti
ユーザー InTheBloomInTheBloom
提出日時 2024-10-25 22:01:18
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 248 ms / 4,000 ms
コード長 1,930 bytes
コンパイル時間 1,101 ms
コンパイル使用メモリ 98,124 KB
実行使用メモリ 40,320 KB
最終ジャッジ日時 2024-10-25 22:02:27
合計ジャッジ時間 4,661 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 95 ms
19,456 KB
testcase_04 AC 109 ms
40,192 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 91 ms
40,320 KB
testcase_08 AC 228 ms
40,320 KB
testcase_09 AC 228 ms
40,192 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 2 ms
6,820 KB
testcase_12 AC 7 ms
6,820 KB
testcase_13 AC 47 ms
21,632 KB
testcase_14 AC 41 ms
19,456 KB
testcase_15 AC 39 ms
10,112 KB
testcase_16 AC 193 ms
33,152 KB
testcase_17 AC 102 ms
19,328 KB
testcase_18 AC 239 ms
40,192 KB
testcase_19 AC 148 ms
40,192 KB
testcase_20 AC 181 ms
40,192 KB
testcase_21 AC 237 ms
40,192 KB
testcase_22 AC 111 ms
40,192 KB
testcase_23 AC 248 ms
40,192 KB
testcase_24 AC 94 ms
40,192 KB
testcase_25 AC 119 ms
40,320 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 5 ms
6,820 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 3 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <bit>

using namespace std;

int main () {
    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<bool>> g(N, vector<bool>(N));
    for (int i = 0; i < M; i++) {
        int U, V; cin >> U >> V;
        U--, V--;
        g[U][V] = g[V][U] = true;
    }

    // dp[i][S][j] := 人iが公園の巡回状況Sで最後に公園jにいる を達成できるか?
    vector<vector<vector<bool>>> dp(K, vector<vector<bool>>(1 << N, vector<bool>(N, false)));

    for (int i = 0; i < K; i++) {
        dp[i][1 << X[i]][X[i]] = true;
    }

    for (int i = 0; i < K; i++) {
        for (int S = 0; S < (1 << N); S++) {
            for (int k = 0; k < N; k++) {
                if (!dp[i][S][k]) continue;
                // 次行く先
                for (int nex = 0; nex < N; nex++) {
                    if (0 < (S & (1 << nex))) continue;
                    if (!g[k][nex]) continue;
                    dp[i][S | (1 << nex)][nex] = true;
                }
            }
        }
    }

    // possible[i][j][k] := 人iがj回の移動で公園kに集まれるか
    vector<vector<vector<bool>>> possible(K, vector<vector<bool>>(N, vector<bool>(N, false)));

    for (int i = 0; i < K; i++) {
        for (int S = 0; S < (1 << N); S++) {
            for (int k = 0; k < N; k++) {
                if (dp[i][S][k]) possible[i][popcount(static_cast<unsigned int>(S)) - 1][k] = true;
            }
        }
    }

    // 判定
    bool ok = false;
    for (int i = 0; i < N; i++) {
        for (int j = 0; j < N; j++) {
            bool all = true;
            for (int k = 0; k < K; k++) {
                if (!possible[k][i][j]) all = false;
            }
            if (all) ok = true;
        }
    }

    if (ok) {
        cout << "Yes" << "\n";
    }
    else {
        cout << "No" << "\n";
    }
}
0