結果

問題 No.1023 Cyclic Tour
ユーザー tapienrutapienru
提出日時 2020-05-16 23:47:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,277 bytes
コンパイル時間 2,362 ms
コンパイル使用メモリ 216,796 KB
実行使用メモリ 19,072 KB
最終ジャッジ日時 2024-09-22 22:50:11
合計ジャッジ時間 11,071 ms
ジャッジサーバーID
(参考情報)
judge3 / 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 66 ms
12,288 KB
testcase_05 AC 66 ms
12,288 KB
testcase_06 AC 79 ms
14,208 KB
testcase_07 AC 72 ms
13,312 KB
testcase_08 AC 63 ms
10,624 KB
testcase_09 AC 60 ms
10,368 KB
testcase_10 AC 56 ms
10,240 KB
testcase_11 AC 65 ms
10,880 KB
testcase_12 AC 54 ms
10,496 KB
testcase_13 AC 51 ms
9,856 KB
testcase_14 AC 49 ms
9,984 KB
testcase_15 AC 55 ms
9,984 KB
testcase_16 AC 105 ms
14,464 KB
testcase_17 AC 104 ms
14,720 KB
testcase_18 AC 129 ms
14,720 KB
testcase_19 AC 103 ms
14,464 KB
testcase_20 AC 113 ms
13,952 KB
testcase_21 AC 112 ms
14,080 KB
testcase_22 AC 108 ms
13,568 KB
testcase_23 AC 104 ms
13,696 KB
testcase_24 AC 104 ms
13,184 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 103 ms
13,056 KB
testcase_29 AC 88 ms
12,664 KB
testcase_30 AC 102 ms
13,568 KB
testcase_31 AC 96 ms
13,568 KB
testcase_32 AC 99 ms
15,644 KB
testcase_33 AC 107 ms
14,592 KB
testcase_34 AC 101 ms
13,440 KB
testcase_35 AC 105 ms
14,208 KB
testcase_36 AC 106 ms
13,824 KB
testcase_37 AC 105 ms
14,976 KB
testcase_38 AC 91 ms
13,440 KB
testcase_39 AC 102 ms
13,440 KB
testcase_40 AC 101 ms
13,312 KB
testcase_41 AC 101 ms
13,312 KB
testcase_42 WA -
testcase_43 AC 113 ms
12,544 KB
testcase_44 AC 84 ms
12,160 KB
testcase_45 AC 60 ms
16,896 KB
testcase_46 AC 62 ms
19,072 KB
testcase_47 AC 70 ms
15,744 KB
testcase_48 AC 105 ms
13,448 KB
testcase_49 AC 121 ms
13,720 KB
testcase_50 AC 99 ms
13,428 KB
testcase_51 AC 105 ms
13,444 KB
testcase_52 AC 105 ms
13,428 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<pair<int, int>>> G(n + 1);
    vector<pair<int, int>> E(m);
    vector<int> sp(n + 1);
    sp[0] = 2;
    for (int i = 0; i < m; ++i) {
        int u, v, c; cin >> u >> v >> c;
        E[i] = {u, v};
        G[u].emplace_back(-c, i);
        if (c == 1) G[v].emplace_back(-c, i);
        else sp[u] = -1;
    }
    for (int i = 1; i <= n; ++i) sort(G[i].begin(), G[i].end());
    vector<int> p(n + 1);
    for (int i = 1; i <= n; ++i) p[i] = i;
    sort(p.begin(), p.end(), [&] (const int& x, const int& y) { return sp[x] < sp[y]; });
    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 (auto& [c, 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 (auto o : p)
        if (!vis[o] && o) dfs(o);
    cout << (ans ? "Yes" : "No") << '\n';
}
0