結果

問題 No.1023 Cyclic Tour
ユーザー tapienrutapienru
提出日時 2020-05-17 16:41:10
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 1,238 bytes
コンパイル時間 2,182 ms
コンパイル使用メモリ 211,056 KB
実行使用メモリ 17,132 KB
最終ジャッジ日時 2024-09-25 09:16:28
合計ジャッジ時間 8,191 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 28 ms
5,376 KB
testcase_05 AC 28 ms
5,376 KB
testcase_06 AC 28 ms
5,376 KB
testcase_07 AC 29 ms
5,376 KB
testcase_08 AC 35 ms
8,916 KB
testcase_09 AC 33 ms
8,520 KB
testcase_10 AC 32 ms
8,780 KB
testcase_11 AC 43 ms
8,792 KB
testcase_12 AC 43 ms
9,444 KB
testcase_13 AC 40 ms
9,168 KB
testcase_14 AC 34 ms
9,156 KB
testcase_15 AC 41 ms
9,044 KB
testcase_16 AC 62 ms
11,040 KB
testcase_17 AC 63 ms
11,116 KB
testcase_18 AC 65 ms
10,820 KB
testcase_19 AC 62 ms
10,572 KB
testcase_20 AC 58 ms
8,028 KB
testcase_21 AC 57 ms
8,168 KB
testcase_22 AC 66 ms
8,808 KB
testcase_23 AC 66 ms
8,984 KB
testcase_24 AC 70 ms
9,968 KB
testcase_25 AC 57 ms
8,284 KB
testcase_26 AC 55 ms
8,276 KB
testcase_27 AC 54 ms
8,008 KB
testcase_28 AC 64 ms
10,080 KB
testcase_29 AC 61 ms
10,328 KB
testcase_30 AC 63 ms
10,220 KB
testcase_31 AC 60 ms
10,092 KB
testcase_32 AC 64 ms
11,980 KB
testcase_33 AC 66 ms
10,480 KB
testcase_34 AC 21 ms
5,376 KB
testcase_35 AC 45 ms
5,376 KB
testcase_36 AC 62 ms
8,292 KB
testcase_37 AC 64 ms
10,588 KB
testcase_38 AC 61 ms
10,700 KB
testcase_39 AC 66 ms
9,176 KB
testcase_40 AC 62 ms
9,336 KB
testcase_41 AC 63 ms
9,428 KB
testcase_42 AC 57 ms
8,164 KB
testcase_43 AC 64 ms
10,072 KB
testcase_44 AC 28 ms
6,944 KB
testcase_45 AC 48 ms
16,876 KB
testcase_46 AC 45 ms
17,132 KB
testcase_47 AC 30 ms
6,944 KB
testcase_48 AC 56 ms
8,420 KB
testcase_49 AC 56 ms
8,460 KB
testcase_50 AC 52 ms
8,428 KB
testcase_51 AC 54 ms
8,680 KB
testcase_52 AC 59 ms
8,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma gcc optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;

int main() {
    ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0);
    int n, m; cin >> n >> m;
    vector<pair<int, int>> E;
    vector<int> p(n + 1, -1);
    function<int(int)> find = [&] (int x) {
        return p[x] < 0 ? x : p[x] = find(p[x]);
    };
    auto merge = [&] (int x, int y) {
        if ((x = find(x)) == (y = find(y))) return 1;
        if (p[x] > p[y]) swap(x, y);
        p[x] += p[y];
        p[y] = x;
        return 0;
    };
    for (int i = 0; i < m; ++i) {
        int a, b, c; cin >> a >> b >> c;
        if (c == 1) {
            if (merge(a, b)) return cout << "Yes\n", 0;
        }
        else {
            E.emplace_back(a, b);
        }
    }
    vector<vector<int>> G(n + 1);
    vector<int> vis(n + 1), stk(n + 1);
    for (auto& [a, b] : E) {
        G[find(a)].emplace_back(find(b));
    }
    function<void(int)> dfs = [&] (int u) {
        vis[u] = stk[u] = 1;
        for (int v : G[u]) {
            if (vis[v] && stk[v]) cout << "Yes\n", exit(0);
            if (!vis[v]) dfs(v);
        }
        stk[u] = 0;
    };
    for (int i = 1; i <= n; ++i)
        if (!vis[find(i)]) dfs(find(i));
    cout << "No\n";
}
0