結果

問題 No.1023 Cyclic Tour
ユーザー TAISA_TAISA_
提出日時 2020-04-10 22:16:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 2,903 bytes
コンパイル時間 2,617 ms
コンパイル使用メモリ 216,656 KB
実行使用メモリ 27,868 KB
最終ジャッジ日時 2024-09-15 20:42:32
合計ジャッジ時間 8,848 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 31 ms
7,296 KB
testcase_05 AC 30 ms
7,296 KB
testcase_06 AC 32 ms
7,808 KB
testcase_07 AC 30 ms
7,424 KB
testcase_08 AC 37 ms
8,832 KB
testcase_09 AC 67 ms
20,356 KB
testcase_10 AC 66 ms
20,572 KB
testcase_11 AC 73 ms
21,348 KB
testcase_12 AC 76 ms
22,660 KB
testcase_13 AC 69 ms
21,440 KB
testcase_14 AC 71 ms
21,288 KB
testcase_15 AC 74 ms
21,580 KB
testcase_16 AC 116 ms
23,032 KB
testcase_17 AC 121 ms
23,052 KB
testcase_18 AC 117 ms
21,860 KB
testcase_19 AC 111 ms
21,524 KB
testcase_20 AC 79 ms
20,420 KB
testcase_21 AC 80 ms
21,012 KB
testcase_22 AC 96 ms
21,560 KB
testcase_23 AC 100 ms
21,844 KB
testcase_24 AC 116 ms
24,060 KB
testcase_25 AC 78 ms
20,596 KB
testcase_26 AC 75 ms
20,388 KB
testcase_27 AC 74 ms
19,580 KB
testcase_28 AC 107 ms
23,104 KB
testcase_29 AC 111 ms
23,736 KB
testcase_30 AC 110 ms
23,684 KB
testcase_31 AC 106 ms
23,012 KB
testcase_32 AC 112 ms
22,504 KB
testcase_33 AC 113 ms
23,360 KB
testcase_34 AC 24 ms
8,320 KB
testcase_35 AC 50 ms
8,576 KB
testcase_36 AC 88 ms
20,976 KB
testcase_37 AC 101 ms
22,300 KB
testcase_38 AC 118 ms
22,752 KB
testcase_39 AC 101 ms
21,896 KB
testcase_40 AC 103 ms
22,244 KB
testcase_41 AC 100 ms
22,076 KB
testcase_42 AC 59 ms
8,832 KB
testcase_43 AC 59 ms
9,728 KB
testcase_44 AC 49 ms
18,488 KB
testcase_45 AC 97 ms
27,868 KB
testcase_46 AC 85 ms
24,788 KB
testcase_47 AC 48 ms
18,712 KB
testcase_48 AC 76 ms
20,852 KB
testcase_49 AC 76 ms
20,844 KB
testcase_50 AC 74 ms
20,928 KB
testcase_51 AC 57 ms
8,832 KB
testcase_52 AC 58 ms
8,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define all(vec) vec.begin(), vec.end()
#define pb push_back
#define eb emplace_back
using namespace std;
using ll = long long;
using P = pair<ll, ll>;
using V = vector<int>;
using VL = vector<ll>;
constexpr ll INF = (1LL << 30) - 1LL;
constexpr ll MOD = 1e9 + 7;
constexpr int dx[4] = {0, 1, 0, -1}, dy[4] = {1, 0, -1, 0};
template <class T>
void chmin(T &a, T b) { a = min(a, b); }
template <class T>
void chmax(T &a, T b) { a = max(a, b); }
void ok() { cerr << "ok" << endl; }
struct UnionFind {
    vector<int> par, sz;
    UnionFind(int n) {
        par.resize(n);
        sz.resize(n, 1);
        iota(all(par), 0);
    }
    inline int find(int x) {
        if (x == par[x]) return x;
        return par[x] = find(par[x]);
    }
    void unite(int u, int v) {
        u = find(u), v = find(v);
        if (u == v) return;
        if (sz[u] < sz[v]) swap(u, v);
        par[v] = u;
        sz[u] += sz[v];
    }
    inline bool same(int u, int v) {
        return find(u) == find(v);
    }
};
vector<vector<int>> G;
struct SCC {
    int n;
    vector<int> ord, vis, cm;
    vector<vector<int>> bl, rG;
    SCC(int n) : n(n), bl(n), rG(n), cm(n), vis(n) {}
    void dfs(int i) {
        vis[i] = 1;
        for (auto &e : G[i]) {
            if (vis[e]) continue;
            dfs(e);
        }
        ord.eb(i);
    }
    void rdfs(int i, int c) {
        vis[i] = 1;
        bl[c].eb(i);
        cm[i] = c;
        for (auto &e : rG[i]) {
            if (vis[e]) continue;
            rdfs(e, c);
        }
    }
    void build() {
        for (int i = 0; i < n; i++) {
            for (auto &e : G[i]) {
                rG[e].eb(i);
            }
        }
        for (int i = 0; i < n; i++) {
            if (!vis[i]) dfs(i);
        }
        reverse(all(ord));
        vis.assign(n, 0);
        int k = 0;
        for (auto &e : ord) {
            if (!vis[e]) {
                bl.eb(vector<int>());
                rdfs(e, k);
                k++;
            }
        }
    }
};
int main() {
    cin.tie(0);
    ios::sync_with_stdio(0);
    int n, m;
    cin >> n >> m;
    UnionFind uf(n);
    V a(m), b(m), c(m);
    G.resize(n);
    for (int i = 0; i < m; i++) {
        cin >> a[i] >> b[i] >> c[i];
        --a[i];
        --b[i];
        if (c[i] == 1) {
            if (uf.same(a[i], b[i])) {
                cout << "Yes\n";
                return 0;
            }
            uf.unite(a[i], b[i]);
        }
    }
    for (int i = 0; i < m; i++) {
        if (c[i] == 2) {
            if (uf.same(a[i], b[i])) {
                cout << "Yes\n";
                return 0;
            }
            G[uf.find(a[i])].eb(uf.find(b[i]));
        }
    }
    SCC scc(n);
    scc.build();
    for (int i = 0; i < n; i++) {
        if (scc.bl[i].size() > 1) {
            cout << "Yes\n";
            return 0;
        }
    }
    cout << "No\n";
    return 0;
}
0