結果
問題 | No.408 五輪ピック |
ユーザー | fiord |
提出日時 | 2016-08-07 12:15:05 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 637 bytes |
コンパイル時間 | 866 ms |
コンパイル使用メモリ | 62,456 KB |
実行使用メモリ | 38,784 KB |
最終ジャッジ日時 | 2024-11-07 07:14:04 |
合計ジャッジ時間 | 6,567 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 508 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 228 ms
5,248 KB |
testcase_11 | AC | 168 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | AC | 56 ms
5,248 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 190 ms
5,248 KB |
testcase_21 | AC | 65 ms
5,248 KB |
testcase_22 | AC | 525 ms
5,248 KB |
testcase_23 | AC | 40 ms
38,784 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 547 ms
5,248 KB |
testcase_27 | AC | 3 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; int n; vector<int> edge[N]; bool flag[N][N]; void dfs(int p,int cur,int d){ if(d==2){ flag[p][cur]=true; return; } for(int i=0;i<edge[cur].size();i++){ if(edge[cur][i]==p) continue; dfs(cur,edge[cur][i],d+1); } return; } int main(){ int m; cin>>n>>m; for(int i=0;i<n;i++){ int a,b; cin>>a>>b; a--; b--; edge[a].push_back(b); edge[b].push_back(a); } dfs(0,0,0); for(int i=0;i<n;i++){ for(int j=0;j<n;j++){ if(flag[i][j]&&flag[j][i]){ cout<<"YES"<<endl; return 0; } } } cout<<"NO"<<endl; return 0; }