結果
問題 | No.408 五輪ピック |
ユーザー | kei |
提出日時 | 2016-11-04 21:11:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 783 bytes |
コンパイル時間 | 788 ms |
コンパイル使用メモリ | 82,776 KB |
実行使用メモリ | 1,075,932 KB |
最終ジャッジ日時 | 2024-11-25 02:59:44 |
合計ジャッジ時間 | 70,823 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | MLE | - |
testcase_01 | AC | 2 ms
13,636 KB |
testcase_02 | MLE | - |
testcase_03 | AC | 2 ms
13,640 KB |
testcase_04 | MLE | - |
testcase_05 | MLE | - |
testcase_06 | MLE | - |
testcase_07 | MLE | - |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | TLE | - |
testcase_14 | MLE | - |
testcase_15 | TLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | MLE | - |
testcase_23 | MLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | MLE | - |
testcase_27 | TLE | - |
testcase_28 | MLE | - |
testcase_29 | MLE | - |
testcase_30 | AC | 4 ms
6,816 KB |
testcase_31 | MLE | - |
ソースコード
#include <iostream> #include <vector> #include <map> #include <queue> #include <algorithm> #define INF 1<<30 using namespace std; bool Ans = false; int N, M; void dfs(vector<vector<int>> v,int prev,int next,int n) { //cout << "next = " << next << " n = " << n << endl; if (n == N) { return ; } for (int i = 0; i < v[next].size();i++) { int f = v[next][i]; if (f == 1 && n + 1 == N) { Ans = true; } if (f != 1 && f != prev) dfs(v,next, f, n + 1); } return ; } int main() { cin.tie(0);ios::sync_with_stdio(false); cin >> N >> M; vector< vector<int>> v(N + 1); for (int i = 0; i < M;i++) { int a, b; cin >> a >> b; v[a].push_back(b); v[b].push_back(a); } dfs(v,0, 1, 0); if (Ans) { cout << "YES"; } else { cout << "NO"; } cout << endl; return 0; }