結果

問題 No.1023 Cyclic Tour
ユーザー MayimgMayimg
提出日時 2020-07-07 10:01:18
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 1,828 bytes
コンパイル時間 2,499 ms
コンパイル使用メモリ 216,160 KB
実行使用メモリ 18,876 KB
最終ジャッジ日時 2024-09-25 08:17:53
合計ジャッジ時間 9,719 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 26 ms
6,944 KB
testcase_05 AC 26 ms
6,944 KB
testcase_06 AC 27 ms
6,940 KB
testcase_07 AC 26 ms
6,940 KB
testcase_08 AC 40 ms
12,496 KB
testcase_09 AC 40 ms
12,192 KB
testcase_10 AC 38 ms
12,160 KB
testcase_11 AC 46 ms
12,712 KB
testcase_12 AC 47 ms
13,916 KB
testcase_13 AC 44 ms
13,092 KB
testcase_14 AC 40 ms
13,036 KB
testcase_15 AC 48 ms
13,576 KB
testcase_16 AC 83 ms
18,416 KB
testcase_17 AC 93 ms
18,876 KB
testcase_18 AC 95 ms
18,572 KB
testcase_19 AC 126 ms
18,192 KB
testcase_20 AC 77 ms
12,028 KB
testcase_21 AC 82 ms
12,752 KB
testcase_22 AC 86 ms
15,000 KB
testcase_23 AC 91 ms
15,708 KB
testcase_24 AC 104 ms
18,016 KB
testcase_25 AC 81 ms
13,252 KB
testcase_26 AC 68 ms
10,636 KB
testcase_27 AC 58 ms
9,212 KB
testcase_28 AC 92 ms
17,600 KB
testcase_29 AC 89 ms
18,440 KB
testcase_30 AC 89 ms
17,636 KB
testcase_31 AC 81 ms
16,516 KB
testcase_32 AC 96 ms
17,956 KB
testcase_33 AC 96 ms
17,708 KB
testcase_34 AC 21 ms
6,944 KB
testcase_35 AC 46 ms
6,944 KB
testcase_36 AC 83 ms
14,224 KB
testcase_37 AC 95 ms
16,312 KB
testcase_38 AC 91 ms
17,660 KB
testcase_39 AC 94 ms
15,520 KB
testcase_40 AC 84 ms
15,976 KB
testcase_41 AC 85 ms
15,868 KB
testcase_42 AC 66 ms
10,192 KB
testcase_43 AC 89 ms
17,484 KB
testcase_44 AC 30 ms
8,548 KB
testcase_45 AC 51 ms
17,192 KB
testcase_46 AC 48 ms
17,352 KB
testcase_47 AC 29 ms
8,580 KB
testcase_48 AC 56 ms
9,608 KB
testcase_49 AC 59 ms
9,624 KB
testcase_50 AC 54 ms
9,524 KB
testcase_51 AC 54 ms
9,524 KB
testcase_52 AC 53 ms
9,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;
/////////////////////////////////////////////////////////////////////////
// UNION FIND
/////////////////////////////////////////////////////////////////////////
class UnionFind {
private:
  int siz;
  vector<int> a;

public:
  UnionFind(int x) : siz(x), a(x, -1) {}

  int root(int x) {
    return a[x] < 0 ? x : a[x] = root(a[x]);
  }

  bool unite(int x, int y) {
    x = root(x);
    y = root(y);
    if (x == y) return false;
    siz--;
    if (a[x] > a[y]) swap(x, y);
    a[x] += a[y];
    a[y] =x;
    return true;
  }

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

  int size(int x) {
    return -a[root(x)];
  }
  
  int connected_component() {
  	return siz;
  }
};
/////////////////////////////////////////////////////////////////////////
// END UNION FIND
/////////////////////////////////////////////////////////////////////////

vector<set<int>> g;
vector<int> vis;

void dfs (int cur) {
  if (vis[cur] == 2) return;
  if (vis[cur] == 1) {
    cout << "Yes" << endl;
    exit(0);
  }
  vis[cur] = 1;
  for (int nxt : g[cur]) {
    dfs(nxt);
  }
  vis[cur] = 2;
}

signed main() { 
  ios::sync_with_stdio(false); cin.tie(0);
  int n, m;
  cin >> n >> m;
  vector<pair<int, int>> de;
  UnionFind uf(n);
  for (int i = 0; i < m; i++) {
    int u, v, t;
    cin >> u >> v >> t;
    u--;
    v--;
    if (t == 1) {
      if (!uf.unite(u, v)) {
        cout << "Yes" << endl;
        return 0;
      }
    } else {
      de.emplace_back(u, v);
    }
  }
  g = vector<set<int>>(n);
  vis = vector<int>(n);
  for (auto& p : de) {
    p.first = uf.root(p.first);
    p.second = uf.root(p.second);
    g[p.first].insert(p.second);
  }
  for (int i = 0; i < n; i++) {
    if (!vis[i]) dfs(i);
  }
  cout << "No" << endl;
  return 0;
}
0