結果
問題 | No.583 鉄道同好会 |
ユーザー | nanophoto12 |
提出日時 | 2017-10-27 23:03:46 |
言語 | C++11 (gcc 11.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,892 bytes |
コンパイル時間 | 877 ms |
コンパイル使用メモリ | 99,584 KB |
実行使用メモリ | 20,512 KB |
最終ジャッジ日時 | 2024-11-21 22:43:51 |
合計ジャッジ時間 | 25,741 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | AC | 2 ms
12,576 KB |
testcase_02 | AC | 2 ms
13,640 KB |
testcase_03 | AC | 2 ms
13,772 KB |
testcase_04 | AC | 2 ms
13,640 KB |
testcase_05 | AC | 1 ms
13,984 KB |
testcase_06 | AC | 1 ms
13,644 KB |
testcase_07 | AC | 2 ms
13,984 KB |
testcase_08 | AC | 1 ms
13,644 KB |
testcase_09 | AC | 2 ms
14,624 KB |
testcase_10 | AC | 2 ms
13,640 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
ソースコード
#include <cmath> #include <vector> #include <list> #include <map> #include <set> #include <functional> #include <queue> #include <iostream> #include <string.h> #include <iomanip> #include <algorithm> #include <functional> #include <cstdint> #include <climits> #include <unordered_set> #include <sstream> #include <stack> using namespace std; typedef long long int ll; typedef pair<int,int> pii; typedef tuple<ll,ll,ll> t3; using namespace std; int n,m; vector<vector<pii>> g; vector<int> used; int dfs(int from, int current) { for(auto e : g[from]) { auto index = e.second; if(used[index]) continue; auto next = e.first; used[index] = true; int count = dfs(next, current + 1); used[index] = false; if(count == m) { return m; } } return current; } bool dfs() { int index = -1; int valid = -1; for(int i = 0;i < n;i++) { if(g[i].size() == 1) { index = i; break; } else if(g[i].size() > 1) { valid = i; } } if(index >= 0) { int to = g[index][0].first; used[g[index][0].second] = true; int r = dfs(to, 1); if(r == m) { return true; } return false; } else { int to = g[valid][0].first; used[g[valid][0].second] = true; int r = dfs(to, 1); if(r == m) { return true; } return false; } } int main() { cin >> n >> m; g.resize(n); used.assign(m, 0); for(int i = 0;i < m;i++) { int a, b; cin >> a >> b; g[a].emplace_back(b,i); g[b].emplace_back(a,i); } if(dfs()) { cout << "YES" << endl; return 0; } cout << "NO" << endl; return 0; }