結果
問題 | No.1023 Cyclic Tour |
ユーザー | trineutron |
提出日時 | 2020-04-10 23:12:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 965 bytes |
コンパイル時間 | 2,171 ms |
コンパイル使用メモリ | 207,672 KB |
実行使用メモリ | 16,384 KB |
最終ジャッジ日時 | 2024-09-16 00:08:21 |
合計ジャッジ時間 | 15,042 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 111 ms
9,088 KB |
testcase_06 | AC | 120 ms
10,624 KB |
testcase_07 | AC | 108 ms
10,240 KB |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 105 ms
8,064 KB |
testcase_12 | AC | 97 ms
7,620 KB |
testcase_13 | AC | 90 ms
7,552 KB |
testcase_14 | AC | 87 ms
7,552 KB |
testcase_15 | AC | 104 ms
7,424 KB |
testcase_16 | AC | 179 ms
11,108 KB |
testcase_17 | WA | - |
testcase_18 | AC | 192 ms
12,160 KB |
testcase_19 | AC | 172 ms
9,088 KB |
testcase_20 | AC | 209 ms
10,240 KB |
testcase_21 | AC | 209 ms
10,240 KB |
testcase_22 | AC | 191 ms
9,856 KB |
testcase_23 | AC | 193 ms
9,856 KB |
testcase_24 | AC | 194 ms
9,472 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 181 ms
9,276 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | AC | 175 ms
9,832 KB |
testcase_32 | AC | 182 ms
12,032 KB |
testcase_33 | AC | 189 ms
10,752 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 204 ms
10,240 KB |
testcase_37 | AC | 180 ms
11,264 KB |
testcase_38 | AC | 169 ms
9,728 KB |
testcase_39 | AC | 198 ms
9,472 KB |
testcase_40 | AC | 179 ms
9,600 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | AC | 108 ms
16,384 KB |
testcase_46 | AC | 106 ms
16,384 KB |
testcase_47 | AC | 115 ms
16,384 KB |
testcase_48 | AC | 555 ms
9,420 KB |
testcase_49 | TLE | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using graph = vector<vector<pair<int, int>>>; bool dfs(const graph &to, vector<bool> &visited, int city, int road, int term) { visited.at(road) = true; for (auto next : to.at(city)) { if (next.second == road) continue; if (next.first == term) return true; if (visited.at(next.second)) continue; if (dfs(to, visited, next.first, next.second, term)) return true; } return false; } int main() { int n, m; cin >> n >> m; graph to(n); for (int i = 0; i < m; i++) { int a, b, c; cin >> a >> b >> c; a--; b--; to.at(a).emplace_back(b, i); if (c == 1) { to.at(b).emplace_back(a, i); } } vector<bool> visited(m + 1); for (int i = 0; i < n; i++) { if (dfs(to, visited, i, m, i)) { cout << "Yes" << endl; return 0; } } cout << "No" << endl; }