結果
問題 | No.408 五輪ピック |
ユーザー | kapo |
提出日時 | 2016-08-06 14:53:09 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,428 bytes |
コンパイル時間 | 749 ms |
コンパイル使用メモリ | 88,232 KB |
実行使用メモリ | 813,732 KB |
最終ジャッジ日時 | 2024-11-07 03:17:20 |
合計ジャッジ時間 | 5,125 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,820 KB |
testcase_03 | AC | 3 ms
6,816 KB |
testcase_04 | AC | 3 ms
6,816 KB |
testcase_05 | MLE | - |
testcase_06 | AC | 23 ms
6,816 KB |
testcase_07 | AC | 35 ms
8,832 KB |
testcase_08 | AC | 49 ms
25,088 KB |
testcase_09 | AC | 36 ms
14,080 KB |
testcase_10 | AC | 23 ms
6,912 KB |
testcase_11 | AC | 22 ms
6,912 KB |
testcase_12 | AC | 41 ms
11,008 KB |
testcase_13 | AC | 132 ms
67,840 KB |
testcase_14 | AC | 10 ms
6,816 KB |
testcase_15 | MLE | - |
testcase_16 | AC | 110 ms
51,072 KB |
testcase_17 | AC | 68 ms
30,336 KB |
testcase_18 | AC | 52 ms
19,200 KB |
testcase_19 | AC | 49 ms
14,336 KB |
testcase_20 | AC | 11 ms
6,816 KB |
testcase_21 | AC | 8 ms
6,816 KB |
testcase_22 | AC | 19 ms
6,820 KB |
testcase_23 | MLE | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
#define _CRT_SECURE_NO_WARNINGS // #pragma warning(disable:4996) #include <iostream> #include <cstdio> #include <algorithm> #include <vector> #include <string> #include <queue> #include <functional> #include <sstream> #include <cmath> #include <set> #include <map> using namespace std; #define rep(i,a,b) for(int i=(a);i<(b);i++) #define pb push_back #define mp(a,b) make_pair(a,b) #define all(a) a.begin(),a.end() #define len(x) ((int)(x).size()) #define tmax(a,b,c) max((a),max((b),(c))) #define debug(x) cerr << #x << " is " << x << endl; typedef pair<int, int> Pii; typedef vector<int> V; typedef vector<vector<int> > VV; typedef long long ll; const int inf = 2e9; const int mod = 1e9 + 7; const long double eps = 1e-10; int N, M; V E1[20001]; vector<Pii> E2[20001]; int main() { cin >> N >> M; rep(i,0,M) { int a, b; cin >> a >> b; a--; b--; E1[a].pb(b); E1[b].pb(a); } rep(i,0,N) { for (int a: E1[i]) { for (int b: E1[a]) { if (b==i) continue; E2[i].pb(mp(a,b)); } } } for (Pii x : E2[0]) { int a2 = x.first; int a3 = x.second; for (Pii y : E2[a3]) { int b2 = y.first; int b3 = y.second; if (0 == b2 || 0 == b3) continue; if (a2 == b2 || a2 == b3) continue; for (int z : E1[b3]) { //printf("a2=%d a3=%d b2=%d b3=%d z=%d\n", a2, a3, b2, b3, z); if (z == 0) { cout << "YES" << endl; return 0; } } } } cout << "NO" << endl; return 0; }