結果
問題 | No.408 五輪ピック |
ユーザー | fiord |
提出日時 | 2016-08-08 14:58:44 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 838 bytes |
コンパイル時間 | 646 ms |
コンパイル使用メモリ | 68,648 KB |
実行使用メモリ | 5,984 KB |
最終ジャッジ日時 | 2024-11-07 07:14:28 |
合計ジャッジ時間 | 2,137 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 3 ms
5,248 KB |
testcase_03 | AC | 3 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 16 ms
5,632 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 12 ms
5,248 KB |
testcase_11 | AC | 10 ms
5,376 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 7 ms
5,248 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 11 ms
5,376 KB |
testcase_21 | AC | 7 ms
5,248 KB |
testcase_22 | RE | - |
testcase_23 | AC | 18 ms
5,888 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 18 ms
5,632 KB |
testcase_27 | AC | 4 ms
5,248 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
ソースコード
#include <iostream> #include <vector> #include <set> using namespace std; const int N=20000; vector<int> edge[N]; set<int> list[N]; void dfs(int cur,int parent,int state){ if(state==2){ list[cur].insert(parent); return; } for(int i=0;i<edge[cur].size();i++){ if(parent==edge[cur][i]) continue; dfs(edge[cur][i],cur,state+1); } return; } int main(){ int n,m; cin>>n>>m; vector<int> a(m),b(m); for(int i=0;i<n;i++){ cin>>a[i]>>b[i]; a[i]--; b[i]--; edge[a[i]].push_back(b[i]); edge[b[i]].push_back(a[i]); } dfs(0,0,0); for(int i=0;i<m;i++){ int numa=list[a[i]].size(); int numb=list[b[i]].size(); if(numa==0||numb==0) continue; if(numa==1&&numb==1){ int aa=*list[a[i]].begin(); int bb=*list[b[i]].begin(); if(aa==bb) continue; } cout<<"YES"<<endl; return 0; } cout<<"NO"<<endl; return 0; }