結果
問題 |
No.977 アリス仕掛けの摩天楼
|
ユーザー |
![]() |
提出日時 | 2020-02-04 14:31:54 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 914 bytes |
コンパイル時間 | 1,710 ms |
コンパイル使用メモリ | 173,284 KB |
実行使用メモリ | 8,960 KB |
最終ジャッジ日時 | 2024-09-21 07:21:43 |
合計ジャッジ時間 | 3,262 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 24 WA * 2 |
ソースコード
#include <bits/stdc++.h> using namespace std; bool dfs(const vector<vector<int>> &to, vector<bool> &isvisited, int index, int prev) { for (int next : to.at(index)) { if (next == prev) continue; if (isvisited.at(next)) { int period = 0; for (auto x : isvisited) { if (x) period++; } return period == isvisited.size() - 1; } isvisited.at(next) = true; if (dfs(to, isvisited, next, index) == false) return false; } return true; } int main() { int n; cin >> n; vector<vector<int>> to(n); for (int i = 0; i < n - 1; i++) { int u, v; cin >> u >> v; to.at(u).push_back(v); to.at(v).push_back(u); } vector<bool> isvisited(n); if (dfs(to, isvisited, 0, -1)) { cout << "Bob" << endl; } else { cout << "Alice" << endl; } }