結果

問題 No.1023 Cyclic Tour
ユーザー kyort0nkyort0n
提出日時 2020-04-10 22:12:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 896 ms / 2,000 ms
コード長 4,024 bytes
コンパイル時間 2,726 ms
コンパイル使用メモリ 202,196 KB
実行使用メモリ 47,856 KB
最終ジャッジ日時 2024-09-15 20:37:13
合計ジャッジ時間 27,075 ms
ジャッジサーバーID
(参考情報)
judge2 / 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 74 ms
5,376 KB
testcase_05 AC 75 ms
5,376 KB
testcase_06 AC 79 ms
5,376 KB
testcase_07 AC 78 ms
5,376 KB
testcase_08 AC 311 ms
17,676 KB
testcase_09 AC 323 ms
17,368 KB
testcase_10 AC 347 ms
28,004 KB
testcase_11 AC 400 ms
31,920 KB
testcase_12 AC 484 ms
39,756 KB
testcase_13 AC 454 ms
37,484 KB
testcase_14 AC 374 ms
19,932 KB
testcase_15 AC 490 ms
38,264 KB
testcase_16 AC 562 ms
24,548 KB
testcase_17 AC 630 ms
25,736 KB
testcase_18 AC 553 ms
23,256 KB
testcase_19 AC 455 ms
21,608 KB
testcase_20 AC 401 ms
16,936 KB
testcase_21 AC 395 ms
18,008 KB
testcase_22 AC 555 ms
27,084 KB
testcase_23 AC 635 ms
29,236 KB
testcase_24 AC 896 ms
41,960 KB
testcase_25 AC 415 ms
18,356 KB
testcase_26 AC 391 ms
15,248 KB
testcase_27 AC 318 ms
12,636 KB
testcase_28 AC 551 ms
22,188 KB
testcase_29 AC 884 ms
42,032 KB
testcase_30 AC 839 ms
36,712 KB
testcase_31 AC 720 ms
32,744 KB
testcase_32 AC 785 ms
35,832 KB
testcase_33 AC 807 ms
34,408 KB
testcase_34 AC 61 ms
5,848 KB
testcase_35 AC 139 ms
6,844 KB
testcase_36 AC 494 ms
22,204 KB
testcase_37 AC 657 ms
30,268 KB
testcase_38 AC 817 ms
37,996 KB
testcase_39 AC 665 ms
30,620 KB
testcase_40 AC 675 ms
30,104 KB
testcase_41 AC 662 ms
29,976 KB
testcase_42 AC 283 ms
12,220 KB
testcase_43 AC 405 ms
19,736 KB
testcase_44 AC 111 ms
9,344 KB
testcase_45 AC 500 ms
47,856 KB
testcase_46 AC 438 ms
38,156 KB
testcase_47 AC 105 ms
9,472 KB
testcase_48 AC 260 ms
13,808 KB
testcase_49 AC 265 ms
13,808 KB
testcase_50 AC 277 ms
13,424 KB
testcase_51 AC 185 ms
11,240 KB
testcase_52 AC 262 ms
11,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<ll, ll> l_l;
typedef pair<int, int> i_i;
template<class T>
inline bool chmax(T &a, T b) {
    if(a < b) {
        a = b;
        return true;
    }
    return false;
}

template<class T>
inline bool chmin(T &a, T b) {
    if(a > b) {
        a = b;
        return true;
    }
    return false;
}

const long double EPS = 1e-10;
const long long INF = 1e18;
const long double PI = acos(-1.0L);
//const ll mod = 1000000007;
struct UnionFind {
    vector<int> par;
    vector<int> rank;
    vector<ll> Size;
    UnionFind(int n = 1) {
        init(n);
    }

    void init(int n = 1) {
        par.resize(n + 1); rank.resize(n + 1); Size.resize(n + 1);
        for (int i = 0; i <= n; ++i) par[i] = i, rank[i] = 0, Size[i] = 1;
    }

    int root(int x) {
        if (par[x] == x) {
            return x;
        }
        else {
            int r = root(par[x]);
            return par[x] = r;
        }
    }

    bool issame(int x, int y) {
        return root(x) == root(y);
    }

    bool merge(int x, int y) {
        x = root(x); y = root(y);
        if (x == y) return false;
        if (rank[x] < rank[y]) swap(x, y);
        if (rank[x] == rank[y]) ++rank[x];
        par[y] = x;
        Size[x] += Size[y];
        return true;
    }

    ll size(int x){
        return Size[root(x)];
    }
};

typedef vector<vector<int>> UnWeightedGraph;

template< typename G >
struct StronglyConnectedComponents {
  const G &g;
  UnWeightedGraph gg, rg;
  vector< int > comp, order, used;

  StronglyConnectedComponents(G &g) : g(g), gg(g.size()), rg(g.size()), comp(g.size(), -1), used(g.size()) {
    for(int i = 0; i < g.size(); i++) {
      for(auto e : g[i]) {
        gg[i].emplace_back((int) e);
        rg[(int) e].emplace_back(i);
      }
    }
  }

  int operator[](int k) {
    return (comp[k]);
  }

  void dfs(int idx) {
    if(used[idx]) return;
    used[idx] = true;
    for(int to : gg[idx]) dfs(to);
    order.push_back(idx);
  }

  void rdfs(int idx, int cnt) {
    if(comp[idx] != -1) return;
    comp[idx] = cnt;
    for(int to : rg[idx]) rdfs(to, cnt);
  }

  void build(UnWeightedGraph &t) {
    for(int i = 0; i < gg.size(); i++) dfs(i);
    reverse(begin(order), end(order));
    int ptr = 0;
    for(int i : order) if(comp[i] == -1) rdfs(i, ptr), ptr++;

    t.resize(ptr);
    for(int i = 0; i < g.size(); i++) {
      for(auto &to : g[i]) {
        int x = comp[i], y = comp[to];
        if(x == y) continue;
        t[x].push_back(y);
      }
    }
  }
};


vector<l_l> e;

int main() {
    ll N, M;
    cin >> N >> M;
    UnionFind uni(N);
    for(int i = 0; i < M; i++) {
        ll a, b, c;
        cin >> a >> b >> c;
        a--;
        b--;
        if(c == 1) {
            if(!uni.merge(a, b)) {
                cout << "Yes" << endl;
                return 0;
            }
        } else {
            e.push_back({a, b});
        }
    }
    ll V = 0;
    map<int, int> inv;
    for(int i = 0; i < N; i++) {
        if(uni.root(i) == i) {
            inv[i] = V;
            V++;
        }
    }
    for(int i = 0; i < N; i++) {
        inv[i] = inv[uni.root(i)];
    }
    UnWeightedGraph g(V), t;
    set<l_l> st;
    for(auto tmp : e) {
        if(inv[tmp.first] == inv[tmp.second]) {
            cout << "Yes" << endl;
            return 0;
        }
        //cerr << inv[tmp.first] << " " << inv[tmp.second] << endl;
        if(st.count({inv[tmp.second], inv[tmp.first]})) {
            cout << "Yes" << endl;
            return 0;
        }
        st.insert({inv[tmp.first], inv[tmp.second]});
        g[inv[tmp.first]].push_back(inv[tmp.second]);
    }
    StronglyConnectedComponents<UnWeightedGraph> SCC(g);
    SCC.build(t);
    set<int> st2;
    for(int i = 0; i < V; i++) {
        //cerr << i << " " << SCC[i] << endl;
        if(st2.count(SCC[i])) {
            cout << "Yes" << endl;
            return 0;
        }
        st2.insert(SCC[i]);
    }
    cout << "No" << endl;
    return 0;
}
0