結果

問題 No.1023 Cyclic Tour
ユーザー risujirohrisujiroh
提出日時 2020-04-10 22:16:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,944 bytes
コンパイル時間 1,919 ms
コンパイル使用メモリ 175,560 KB
実行使用メモリ 18,712 KB
最終ジャッジ日時 2024-09-15 20:42:18
合計ジャッジ時間 6,987 ms
ジャッジサーバーID
(参考情報)
judge6 / 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 41 ms
10,140 KB
testcase_05 AC 41 ms
10,028 KB
testcase_06 AC 46 ms
12,040 KB
testcase_07 AC 43 ms
11,140 KB
testcase_08 AC 37 ms
8,100 KB
testcase_09 AC 36 ms
7,868 KB
testcase_10 AC 35 ms
7,888 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 34 ms
7,736 KB
testcase_15 WA -
testcase_16 AC 66 ms
12,156 KB
testcase_17 AC 67 ms
12,208 KB
testcase_18 AC 69 ms
13,048 KB
testcase_19 AC 65 ms
12,312 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 70 ms
11,172 KB
testcase_26 AC 71 ms
12,196 KB
testcase_27 AC 68 ms
11,820 KB
testcase_28 AC 66 ms
10,560 KB
testcase_29 AC 61 ms
10,244 KB
testcase_30 AC 67 ms
10,548 KB
testcase_31 AC 64 ms
10,880 KB
testcase_32 AC 67 ms
13,644 KB
testcase_33 AC 69 ms
12,084 KB
testcase_34 AC 68 ms
11,028 KB
testcase_35 AC 70 ms
11,208 KB
testcase_36 WA -
testcase_37 AC 65 ms
12,392 KB
testcase_38 AC 62 ms
11,520 KB
testcase_39 WA -
testcase_40 AC 65 ms
10,372 KB
testcase_41 AC 67 ms
10,496 KB
testcase_42 AC 71 ms
11,360 KB
testcase_43 AC 61 ms
10,020 KB
testcase_44 AC 41 ms
9,828 KB
testcase_45 AC 46 ms
17,820 KB
testcase_46 AC 46 ms
17,564 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 AC 69 ms
11,700 KB
testcase_52 AC 69 ms
11,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

#ifdef LOCAL
#include "debug.h"
#else
#define DEBUG(...)
#endif

struct scc {
  const int n;
  vector<pair<int, int>> edge_pool;
  vector<int> head, g, ord, low, st, cmp;
  int t = 0, id = 0;
  scc(int _n) : n(_n), head(n + 1), ord(n, -1), low(n), cmp(n, -1) {}
  void add(int from, int to) {
    edge_pool.emplace_back(from, to);
    ++head[from];
  }
  void build() {
    for (int v = 0; v < n; ++v) head[v + 1] += head[v];
    g.resize(head[n]);
    for (auto e : edge_pool) g[--head[e.first]] = e.second;
  }
  void dfs(int v) {
    ord[v] = low[v] = t++, st.push_back(v);
    for (int i = head[v]; i < head[v + 1]; ++i) {
      int to = g[i];
      if (ord[to] == -1) {
        dfs(to);
        low[v] = min(low[v], low[to]);
      } else if (cmp[to] == -1) {
        low[v] = min(low[v], ord[to]);
      }
    }
    if (ord[v] == low[v]) {
      while (true) {
        int u = st.back();
        st.pop_back();
        cmp[u] = id;
        if (u == v) break;
      }
      ++id;
    }
  }
  void run() {
    build();
    for (int v = 0; v < n; ++v) if (ord[v] == -1) dfs(v);
    for (auto&& e : cmp) e = id - e - 1;
  }
};

int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  int n, m;
  cin >> n >> m;
  scc g(n);
  vector<int> a(m), b(m), c(m);
  for (int i = 0; i < m; ++i) {
    cin >> a[i] >> b[i] >> c[i];
    --a[i], --b[i];
    if (c[i] == 1) {
      g.add(a[i], b[i]);
      g.add(b[i], a[i]);
    } else {
      g.add(a[i], b[i]);
    }
  }
  g.run();
  vector<int> cv(g.id), ce(g.id);
  for (int v = 0; v < n; ++v) {
    ++cv[g.cmp[v]];
    DEBUG(v, g.cmp[v]);
  }
  for (int i = 0; i < m; ++i) {
    if (g.cmp[a[i]] == g.cmp[b[i]]) {
      ++ce[g.cmp[a[i]]];
    }
  }
  for (int i = 0; i < g.id; ++i) {
    if (cv[i] == 1) {
      continue;
    }
    if (cv[i] == 2 and ce[i] == 1) {
      continue;
    }
    cout << "Yes\n";
    exit(0);
  }
  cout << "No\n";
}
0