結果

問題 No.1023 Cyclic Tour
ユーザー simansiman
提出日時 2023-06-12 13:35:51
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,502 bytes
コンパイル時間 1,240 ms
コンパイル使用メモリ 130,844 KB
実行使用メモリ 37,504 KB
最終ジャッジ日時 2024-06-11 15:44:26
合計ジャッジ時間 31,534 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 299 ms
26,368 KB
testcase_05 AC 295 ms
26,624 KB
testcase_06 AC 346 ms
28,800 KB
testcase_07 AC 319 ms
27,520 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 292 ms
26,624 KB
testcase_12 AC 271 ms
26,240 KB
testcase_13 AC 254 ms
24,704 KB
testcase_14 AC 259 ms
24,576 KB
testcase_15 AC 284 ms
25,600 KB
testcase_16 AC 573 ms
35,200 KB
testcase_17 AC 611 ms
35,456 KB
testcase_18 AC 604 ms
35,328 KB
testcase_19 AC 568 ms
34,304 KB
testcase_20 AC 635 ms
35,968 KB
testcase_21 AC 632 ms
36,480 KB
testcase_22 AC 604 ms
35,712 KB
testcase_23 AC 606 ms
36,352 KB
testcase_24 AC 618 ms
36,736 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 618 ms
35,584 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 601 ms
35,968 KB
testcase_37 AC 606 ms
37,120 KB
testcase_38 WA -
testcase_39 AC 636 ms
35,712 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 248 ms
34,304 KB
testcase_46 AC 242 ms
34,816 KB
testcase_47 AC 269 ms
34,304 KB
testcase_48 AC 634 ms
37,436 KB
testcase_49 AC 638 ms
37,504 KB
testcase_50 AC 644 ms
37,260 KB
testcase_51 WA -
testcase_52 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stack>
#include <string.h>
#include <vector>
#include <map>

using namespace std;

typedef vector <vector<int>> Graph;
const int MAX_N = 100000;

int root;
bool visited[MAX_N];
bool finished[MAX_N];

void dfs(int u, int parent, const Graph &G, stack<int> &path) {
  visited[u] = true;
  path.push(u);

  for (int v : G[u]) {
    if (v == parent) continue;
    if (finished[v]) continue;

    if (visited[v] && !finished[v]) {
      root = v;
      return;
    }

    dfs(v, u, G, path);

    if (root != -1) return;
  }

  path.pop();
  finished[u] = true;
}

vector<int> cycle_detection(int start, const Graph &G) {
  root = -1;
  memset(visited, false, sizeof(visited));
  memset(finished, false, sizeof(finished));
  stack<int> path;

  dfs(start, -1, G, path);

  vector<int> res;

  while (!path.empty()) {
    res.push_back(path.top());
    path.pop();
  }

  return res;
}

int main() {
  int N, M;
  cin >> N >> M;
  Graph G(N + 1);
  map<int, map<int, int>> E;

  bool ok = false;
  int a, b, c;
  for (int i = 0; i < M; ++i) {
    cin >> a >> b >> c;

    G[a].push_back(b);
    if (c == 1) {
      G[b].push_back(a);
      E[a][b] += 1;
      E[b][a] += 1;
    } else {
      E[a][b] += 2;
    }
    if (E[a][b] >= 2 && E[b][a] >= 2) {
      ok = true;
    }
  }

  vector<int> path = cycle_detection(1, G);

  if (ok) {
    cout << "Yes" << endl;
  } else if (path.empty()) {
    cout << "No" << endl;
  } else {
    cout << "Yes" << endl;
  }

  return 0;
}

0