結果
問題 | No.408 五輪ピック |
ユーザー | srup٩(๑`н´๑)۶ |
提出日時 | 2016-08-07 06:10:17 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,106 bytes |
コンパイル時間 | 786 ms |
コンパイル使用メモリ | 64,476 KB |
実行使用メモリ | 191,744 KB |
最終ジャッジ日時 | 2024-11-07 04:38:19 |
合計ジャッジ時間 | 3,864 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 20 ms
11,776 KB |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | AC | 38 ms
35,456 KB |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | AC | 25 ms
15,744 KB |
testcase_14 | WA | - |
testcase_15 | AC | 16 ms
8,320 KB |
testcase_16 | AC | 36 ms
27,392 KB |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | AC | 16 ms
8,576 KB |
testcase_26 | MLE | - |
testcase_27 | WA | - |
testcase_28 | AC | 50 ms
55,552 KB |
testcase_29 | AC | 51 ms
55,424 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:16:24: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 16 | int a, b; scanf("%d %d", &a, &b); | ~~~~~^~~~~~~~~~~~~~~~~
ソースコード
#include <iostream> #include <algorithm> #include <vector> #include <cstdio> using namespace std; #define rep(i,n) for(int i=0;i<(n);i++) int n, m; vector<int> g[20001]; vector<int> h[20001]; int memo[20001][20001]; int main(void){ cin >> n >> m; rep(i, m){ int a, b; scanf("%d %d", &a, &b); a--; b--; g[a].push_back(b); g[b].push_back(a); memo[a][b] = true; } //1 - u - vとなるような辺を見つける for(int u : g[0]){ for (int v : g[u]){ //頂点に戻るようなものは入れない if(v != 0) h[u].push_back(v); } } for (int i = 1; i < n; ++i){ for (int j = i + 1; j < n; ++j){ if(h[i].size() > 3 && h[j].size() > 3){ printf("YES\n"); return 0; } for (int p : h[i]){ for (int q : h[j]){ if(p != j && p != q && i != q){ printf("YES\n"); return 0; } } } } } printf("NO\n"); return 0; }