結果
問題 | No.408 五輪ピック |
ユーザー | willowoooo |
提出日時 | 2016-08-21 17:24:34 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 126 ms / 5,000 ms |
コード長 | 1,723 bytes |
コンパイル時間 | 798 ms |
コンパイル使用メモリ | 77,996 KB |
実行使用メモリ | 9,856 KB |
最終ジャッジ日時 | 2024-11-07 22:27:32 |
合計ジャッジ時間 | 2,813 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
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 | AC | 27 ms
5,376 KB |
testcase_06 | AC | 19 ms
5,760 KB |
testcase_07 | AC | 27 ms
5,504 KB |
testcase_08 | AC | 20 ms
5,248 KB |
testcase_09 | AC | 22 ms
5,248 KB |
testcase_10 | AC | 19 ms
5,248 KB |
testcase_11 | AC | 18 ms
5,248 KB |
testcase_12 | AC | 31 ms
5,632 KB |
testcase_13 | AC | 25 ms
5,248 KB |
testcase_14 | AC | 8 ms
5,248 KB |
testcase_15 | AC | 33 ms
6,656 KB |
testcase_16 | AC | 28 ms
5,248 KB |
testcase_17 | AC | 30 ms
5,248 KB |
testcase_18 | AC | 33 ms
5,248 KB |
testcase_19 | AC | 34 ms
5,504 KB |
testcase_20 | AC | 10 ms
5,248 KB |
testcase_21 | AC | 7 ms
5,248 KB |
testcase_22 | AC | 16 ms
5,632 KB |
testcase_23 | AC | 49 ms
9,856 KB |
testcase_24 | AC | 113 ms
8,832 KB |
testcase_25 | AC | 54 ms
7,040 KB |
testcase_26 | AC | 38 ms
6,016 KB |
testcase_27 | AC | 126 ms
7,040 KB |
testcase_28 | AC | 49 ms
5,888 KB |
testcase_29 | AC | 119 ms
5,760 KB |
testcase_30 | AC | 3 ms
5,248 KB |
testcase_31 | AC | 3 ms
5,248 KB |
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<unordered_set> using namespace std; int main() { int N, M; cin >> N >> M; vector<int> graph[20050]; int A[50010] = { 0 }, B[50010] = { 0 }; for (int i = 0; i < M; i++) { int a, b; cin >> a >> b; A[i] = a, B[i] = b; graph[a].push_back(b); graph[b].push_back(a); } /*for (int i = 0; i <= N; i++) { cout << i << " " ; for (int j = 0; j < graph[i].size(); j++) { cout << graph[i][j]<<" "; } cout << endl; } */ vector<unordered_set<int>> p(N+1); for (int i = 0; i < graph[1].size(); i++) { int a = graph[1][i]; for (int j = 0; j < graph[a].size(); j++) { int b = graph[a][j]; if (b == 1) continue; p[b].insert(a); //cout << a << " " << b << endl; } } /* for (int i = 0; i < p.size(); i++) { for (int j = i; j < p.size(); j++) { if (i == j) continue; int a1 = p[i].first, b1 = p[i].second, a2 = p[j].first, b2 = p[j].second; if (a1 == a2 || b1 == b2 || a2 == b1 || a1 == b2) continue; bool flag = false; for (int j = 0; j < graph[b1].size(); j++) { if (graph[b1][j] == b2) flag = true; } if (flag) { // cout << a1 << " " << b1 << " " << a2 << " " << b2 << endl; cout << "YES" << endl; return 0; } } } */ for (int i = 0; i < M; i++) { int c = A[i], d = B[i]; for (int j = 0; j < graph[c].size(); j++) { if (d == graph[c][j]) { for (auto &s : p[c]) { for (auto &t : p[d]) { if (s != t && s != c && s != d && t!= c&&t != d) { cout << "YES" << endl; //cout << s << " " << t << " "<<c<<" "<<d<<endl; return 0; } } } } } } cout << "NO" << endl; return 0; }