結果

問題 No.1023 Cyclic Tour
ユーザー tapienrutapienru
提出日時 2020-05-16 22:39:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 967 bytes
コンパイル時間 2,349 ms
コンパイル使用メモリ 210,008 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-09-22 21:28:42
合計ジャッジ時間 11,421 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 71 ms
11,008 KB
testcase_05 AC 79 ms
11,136 KB
testcase_06 AC 93 ms
12,800 KB
testcase_07 AC 81 ms
11,904 KB
testcase_08 AC 60 ms
9,728 KB
testcase_09 AC 54 ms
9,472 KB
testcase_10 AC 60 ms
9,472 KB
testcase_11 AC 63 ms
9,856 KB
testcase_12 AC 57 ms
9,472 KB
testcase_13 AC 54 ms
9,216 KB
testcase_14 AC 52 ms
9,216 KB
testcase_15 AC 56 ms
9,344 KB
testcase_16 AC 108 ms
12,928 KB
testcase_17 AC 117 ms
13,056 KB
testcase_18 AC 118 ms
13,312 KB
testcase_19 AC 106 ms
13,056 KB
testcase_20 AC 120 ms
11,904 KB
testcase_21 AC 124 ms
12,032 KB
testcase_22 AC 109 ms
11,620 KB
testcase_23 AC 115 ms
11,776 KB
testcase_24 AC 117 ms
11,648 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 114 ms
12,032 KB
testcase_28 AC 112 ms
11,392 KB
testcase_29 AC 102 ms
11,008 KB
testcase_30 AC 122 ms
11,776 KB
testcase_31 AC 112 ms
12,160 KB
testcase_32 AC 114 ms
14,208 KB
testcase_33 WA -
testcase_34 AC 109 ms
11,392 KB
testcase_35 AC 121 ms
11,904 KB
testcase_36 AC 123 ms
11,776 KB
testcase_37 AC 121 ms
13,312 KB
testcase_38 AC 102 ms
12,032 KB
testcase_39 AC 115 ms
11,392 KB
testcase_40 AC 114 ms
11,520 KB
testcase_41 AC 119 ms
11,520 KB
testcase_42 WA -
testcase_43 AC 98 ms
11,008 KB
testcase_44 WA -
testcase_45 AC 60 ms
18,408 KB
testcase_46 AC 62 ms
18,432 KB
testcase_47 AC 72 ms
18,432 KB
testcase_48 AC 110 ms
12,288 KB
testcase_49 AC 97 ms
12,304 KB
testcase_50 AC 106 ms
12,272 KB
testcase_51 AC 104 ms
12,284 KB
testcase_52 AC 102 ms
12,264 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<vector<int>> G(n + 1);
    vector<pair<int, int>> E(m);
    for (int i = 0; i < m; ++i) {
        int u, v, c; cin >> u >> v >> c;
        E[i] = {u, v};
        G[u].emplace_back(i);
        if (c == 1) G[v].emplace_back(i);
    }
    int ans = 0;
    vector<int> vis(n + 1), stk(n + 1), evis(m);
    function<void(int)> dfs = [&] (int u) {
        vis[u] = stk[u] = 1;
        for (int i : G[u]) {
            if (evis[i]) continue;
            int v = u != E[i].first ? E[i].first : E[i].second;
            if (vis[v] && stk[v]) ans = 1;
            if (!vis[v]) {
                evis[i] = 1;
                dfs(v);
            }
        }
        stk[u] = 0;
    };
    for (int i = 1; i <= n; ++i)
        if (!vis[i]) dfs(i);
    cout << (ans ? "Yes" : "No") << '\n';
}
0