結果

問題 No.2948 move move rotti
ユーザー Xinyuan HuangXinyuan Huang
提出日時 2024-11-15 12:41:44
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 970 bytes
コンパイル時間 3,876 ms
コンパイル使用メモリ 281,684 KB
実行使用メモリ 13,644 KB
最終ジャッジ日時 2024-11-15 12:42:43
合計ジャッジ時間 55,711 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,888 KB
testcase_01 AC 2 ms
13,636 KB
testcase_02 AC 2 ms
9,892 KB
testcase_03 TLE -
testcase_04 AC 2 ms
9,888 KB
testcase_05 AC 2 ms
9,892 KB
testcase_06 AC 2 ms
10,148 KB
testcase_07 AC 2 ms
10,016 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 AC 2 ms
10,020 KB
testcase_11 AC 2 ms
13,644 KB
testcase_12 AC 1,861 ms
10,148 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 464 ms
6,820 KB
testcase_20 AC 2,498 ms
6,820 KB
testcase_21 TLE -
testcase_22 AC 24 ms
6,820 KB
testcase_23 TLE -
testcase_24 AC 3 ms
6,820 KB
testcase_25 AC 34 ms
6,816 KB
testcase_26 AC 3 ms
6,816 KB
testcase_27 AC 2 ms
6,820 KB
testcase_28 AC 419 ms
6,820 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 2 ms
10,020 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;
    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