結果

問題 No.2948 move move rotti
ユーザー Xinyuan HuangXinyuan Huang
提出日時 2024-11-15 12:56:22
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
RE  
実行時間 -
コード長 1,000 bytes
コンパイル時間 7,020 ms
コンパイル使用メモリ 282,204 KB
実行使用メモリ 6,824 KB
最終ジャッジ日時 2024-11-15 12:56:33
合計ジャッジ時間 6,516 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

int main() {
    std::cin.tie(nullptr)->sync_with_stdio(false);
    int n, m, k;
    std::cin >> n >> m >> k;
    assert(n <=10 or m <= 30);
    std::vector<int> a(k);
    for (auto &x : a) std::cin >> x, --x;
    std::vector<std::vector<int>> g(n);
    for (int i = 0; i < m; ++i) {
        int u, v;
        std::cin >> u >> v, --u, --v;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    constexpr int N = 15;
    int d[N][N]{};
    for (int i = 0; i < k; ++i) {
        std::vector<int> st(n);
        auto dfs = [&](auto &dfs, int u, int step)->void {
            st[u] = 1;
            d[step][u] |= 1 << i;
            for (auto &v : g[u])
                if (!st[v]) dfs(dfs, v, step + 1);
            st[u] = 0;
        };
        dfs(dfs, a[i], 0);
    }
    int res = 0;
    for (int i = 0; i < n; ++i)
        for (int j = 0; j < n; ++j)
                res|= (d[i][j] == (1 << k) - 1);
    std::cout << (res ? "Yes" : "No") << '\n';
    return 0;
}
0