結果
問題 | No.1023 Cyclic Tour |
ユーザー | ゆきのん |
提出日時 | 2020-04-15 18:15:14 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,369 bytes |
コンパイル時間 | 1,805 ms |
コンパイル使用メモリ | 169,732 KB |
実行使用メモリ | 14,720 KB |
最終ジャッジ日時 | 2024-10-01 18:57:58 |
合計ジャッジ時間 | 12,498 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 5 ms
6,784 KB |
testcase_01 | AC | 5 ms
6,784 KB |
testcase_02 | AC | 5 ms
6,944 KB |
testcase_03 | AC | 4 ms
6,912 KB |
testcase_04 | AC | 118 ms
9,856 KB |
testcase_05 | AC | 117 ms
9,812 KB |
testcase_06 | AC | 133 ms
10,112 KB |
testcase_07 | AC | 123 ms
10,112 KB |
testcase_08 | AC | 106 ms
9,344 KB |
testcase_09 | AC | 103 ms
9,088 KB |
testcase_10 | AC | 101 ms
9,216 KB |
testcase_11 | WA | - |
testcase_12 | AC | 100 ms
8,960 KB |
testcase_13 | AC | 94 ms
8,832 KB |
testcase_14 | WA | - |
testcase_15 | AC | 102 ms
8,832 KB |
testcase_16 | AC | 186 ms
9,600 KB |
testcase_17 | AC | 188 ms
9,728 KB |
testcase_18 | AC | 195 ms
9,460 KB |
testcase_19 | AC | 185 ms
9,600 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 208 ms
10,240 KB |
testcase_26 | AC | 208 ms
10,240 KB |
testcase_27 | AC | 194 ms
10,240 KB |
testcase_28 | AC | 196 ms
9,728 KB |
testcase_29 | AC | 187 ms
9,492 KB |
testcase_30 | AC | 206 ms
9,984 KB |
testcase_31 | AC | 190 ms
10,368 KB |
testcase_32 | AC | 200 ms
11,520 KB |
testcase_33 | AC | 207 ms
10,624 KB |
testcase_34 | AC | 196 ms
9,984 KB |
testcase_35 | AC | 212 ms
10,240 KB |
testcase_36 | WA | - |
testcase_37 | AC | 198 ms
10,396 KB |
testcase_38 | AC | 185 ms
10,276 KB |
testcase_39 | WA | - |
testcase_40 | AC | 198 ms
9,876 KB |
testcase_41 | AC | 195 ms
9,984 KB |
testcase_42 | AC | 210 ms
10,240 KB |
testcase_43 | AC | 180 ms
9,472 KB |
testcase_44 | AC | 119 ms
10,212 KB |
testcase_45 | AC | 107 ms
14,720 KB |
testcase_46 | AC | 106 ms
14,720 KB |
testcase_47 | AC | 112 ms
14,592 KB |
testcase_48 | WA | - |
testcase_49 | AC | 183 ms
10,552 KB |
testcase_50 | WA | - |
testcase_51 | AC | 185 ms
10,280 KB |
testcase_52 | AC | 192 ms
10,348 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; #define fs first #define sc second #define pb push_back #define mp make_pair #define eb emplace_back #define ALL(A) A.begin(),A.end() #define RALL(A) A.rbegin(),A.rend() typedef long long LL; typedef pair<LL,LL> P; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template<typename T> T gcd(T a,T b){return b?gcd(b,a%b):a;} const LL mod=1000000007; const LL LINF=1LL<<62; const int INF=1<<30; int dx[]={1,0,-1,0,1,-1,1,-1}; int dy[]={0,1,0,-1,1,-1,-1,1}; vector<int> G[1<<17]; vector<int> vis(1<<17,0); bool dfs(int u,int v,int s){ if(vis[u]){ if(u == v || vis[u] < s + 1) return false; else return true; } vis[u] = s + 1; for(auto g:G[u]){ if(g == v) continue; if(dfs(g, u, s)) return true; } return false; } int main(){ int n,m;cin >> n >> m; for (int i = 0; i < m; i++) { int x,y,c;cin >> x >> y >> c; x--,y--; if(c == 1){ G[x].pb(y); G[y].pb(x); } else{ G[x].pb(y); } } bool ans = false; for (int i = 0; i < n; i++) { ans |= dfs(i,i,i); } if(ans) puts("Yes"); else puts("No"); return 0; }