結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー trineutron
提出日時 2020-02-04 14:39:16
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,004 bytes
コンパイル時間 1,798 ms
コンパイル使用メモリ 174,516 KB
実行使用メモリ 8,896 KB
最終ジャッジ日時 2024-09-21 07:22:10
合計ジャッジ時間 3,210 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#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++;
            }
            if (period != isvisited.size() - 1) {
                return false;
            } else {
                continue;
            }
        }
        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;
    }
}
0