結果
問題 | No.1023 Cyclic Tour |
ユーザー | chocorusk |
提出日時 | 2020-03-05 22:05:17 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,408 bytes |
コンパイル時間 | 660 ms |
コンパイル使用メモリ | 72,300 KB |
実行使用メモリ | 7,820 KB |
最終ジャッジ日時 | 2024-10-15 19:52:01 |
合計ジャッジ時間 | 5,832 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
6,816 KB |
testcase_01 | WA | - |
testcase_02 | AC | 4 ms
7,072 KB |
testcase_03 | WA | - |
testcase_04 | AC | 3 ms
6,820 KB |
testcase_05 | AC | 4 ms
7,304 KB |
testcase_06 | AC | 3 ms
6,824 KB |
testcase_07 | AC | 4 ms
6,820 KB |
testcase_08 | AC | 3 ms
6,816 KB |
testcase_09 | AC | 3 ms
6,816 KB |
testcase_10 | AC | 4 ms
7,276 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 4 ms
7,428 KB |
testcase_15 | WA | - |
testcase_16 | AC | 3 ms
6,820 KB |
testcase_17 | AC | 4 ms
6,820 KB |
testcase_18 | AC | 4 ms
7,180 KB |
testcase_19 | AC | 4 ms
6,868 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | AC | 4 ms
6,816 KB |
testcase_26 | AC | 3 ms
6,816 KB |
testcase_27 | AC | 3 ms
6,816 KB |
testcase_28 | AC | 3 ms
6,820 KB |
testcase_29 | AC | 3 ms
7,400 KB |
testcase_30 | AC | 3 ms
6,816 KB |
testcase_31 | AC | 4 ms
6,852 KB |
testcase_32 | AC | 3 ms
6,820 KB |
testcase_33 | AC | 3 ms
6,820 KB |
testcase_34 | AC | 4 ms
7,316 KB |
testcase_35 | AC | 3 ms
6,820 KB |
testcase_36 | WA | - |
testcase_37 | AC | 3 ms
6,820 KB |
testcase_38 | AC | 3 ms
7,624 KB |
testcase_39 | WA | - |
testcase_40 | AC | 3 ms
6,816 KB |
testcase_41 | AC | 3 ms
6,820 KB |
testcase_42 | AC | 4 ms
6,816 KB |
testcase_43 | AC | 3 ms
6,816 KB |
testcase_44 | AC | 3 ms
6,820 KB |
testcase_45 | WA | - |
testcase_46 | AC | 3 ms
6,832 KB |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | AC | 3 ms
6,816 KB |
testcase_52 | AC | 4 ms
6,936 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> using namespace std; typedef long long ll; struct unionfind{ vector<int> par, sz; unionfind() {} unionfind(int n):par(n), sz(n, 1){ for(int i=0; i<n; i++) par[i]=i; } int find(int x){ if(par[x]==x) return x; return par[x]=find(par[x]); } void unite(int x, int y){ x=find(x); y=find(y); if(x==y) return; if(sz[x]>sz[y]) swap(x, y); par[x]=y; sz[y]+=sz[x]; } bool same(int x, int y){ return find(x)==find(y); } int size(int x){ return sz[find(x)]; } }; int n, m; int a[200020], b[200020], c[200020]; vector<int> g[100010]; bool used[100010]; bool finish[100010]; bool ok; void dfs(int x){ used[x]=1; for(auto y:g[x]){ if(used[y] && !finish[y]) ok=1; if(!used[y]) dfs(y); } finish[x]=1; } int main() { cout<<"Yes"<<endl; return 0; cin>>n>>m; for(int i=0; i<m; i++){ cin>>a[i]>>b[i]>>c[i]; a[i]--; b[i]--; } unionfind uf(n); for(int i=0; i<m; i++){ if(c[i]==1){ if(uf.same(a[i], b[i])){ cout<<"Yes"<<endl; return 0; } uf.unite(a[i], b[i]); } } for(int i=0; i<m; i++){ if(c[i]==2) g[uf.find(a[i])].push_back(uf.find(b[i])); } for(int i=0; i<n; i++){ if(used[i]) continue; dfs(i); if(ok){ cout<<"Yes"<<endl; return 0; } } cout<<"No"<<endl; return 0; }