結果
問題 | No.408 五輪ピック |
ユーザー | srup٩(๑`н´๑)۶ |
提出日時 | 2016-08-07 05:04:02 |
言語 | C++11 (gcc 11.4.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,432 bytes |
コンパイル時間 | 624 ms |
コンパイル使用メモリ | 63,268 KB |
実行使用メモリ | 250,752 KB |
最終ジャッジ日時 | 2024-11-07 04:38:15 |
合計ジャッジ時間 | 6,074 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 14 ms
8,064 KB |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | AC | 23 ms
19,328 KB |
testcase_09 | AC | 46 ms
52,736 KB |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | AC | 17 ms
9,984 KB |
testcase_14 | AC | 29 ms
40,192 KB |
testcase_15 | AC | 14 ms
6,272 KB |
testcase_16 | AC | 25 ms
15,232 KB |
testcase_17 | AC | 42 ms
39,552 KB |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | AC | 30 ms
42,880 KB |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | MLE | - |
testcase_25 | AC | 16 ms
6,528 KB |
testcase_26 | MLE | - |
testcase_27 | AC | 1,921 ms
6,528 KB |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
testcase_30 | WA | - |
testcase_31 | AC | 1 ms
5,248 KB |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:15:24: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 15 | 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]; bool 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] = memo[b][a] = true; } /* //1 - u - vとなるような辺を見つける vector<pair<int, int> > d; for(int u : g[0]){ for (int v : g[u]){ //頂点に戻るようなものは入れない if(v != 0) d.push_back(make_pair(u, v)); } } */ vector<pair<int, int> > d; for (int u = 1; u < n; ++u){ if(memo[0][u]){ for (int v = 0; v < n; ++v){ if(memo[u][v]){ d.push_back(make_pair(u, v)); } } } } for (int i = 0; i < d.size() - 1; ++i){ for (int j = i + 1; j < d.size(); ++j){ if(d[i].first != d[j].first && d[i].first != d[j].second && d[i].second != d[j].first && d[i].second != d[j].second){ if(memo[d[i].second][d[j].second]){ printf("YES\n"); return 0; } } } } printf("NO\n"); return 0; }