結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー trineutrontrineutron
提出日時 2020-02-04 14:44:32
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,066 bytes
コンパイル時間 1,742 ms
コンパイル使用メモリ 173,596 KB
実行使用メモリ 11,724 KB
最終ジャッジ日時 2023-10-21 06:12:20
合計ジャッジ時間 5,766 ms
ジャッジサーバーID
(参考情報)
judge12 / judge9
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,348 KB
testcase_01 AC 2 ms
4,348 KB
testcase_02 AC 2 ms
4,348 KB
testcase_03 AC 2 ms
4,348 KB
testcase_04 AC 2 ms
4,348 KB
testcase_05 AC 2 ms
4,348 KB
testcase_06 AC 2 ms
4,348 KB
testcase_07 AC 2 ms
4,348 KB
testcase_08 AC 2 ms
4,348 KB
testcase_09 AC 2 ms
4,348 KB
testcase_10 AC 2 ms
4,348 KB
testcase_11 AC 2 ms
4,348 KB
testcase_12 AC 2 ms
4,348 KB
testcase_13 AC 9 ms
4,348 KB
testcase_14 AC 8 ms
4,348 KB
testcase_15 AC 9 ms
4,348 KB
testcase_16 AC 9 ms
4,348 KB
testcase_17 AC 9 ms
4,700 KB
testcase_18 AC 25 ms
4,836 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
権限があれば一括ダウンロードができます

ソースコード

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);
    }
    for (int i = 0; i < n; i++) {
        vector<bool> isvisited(n);
        if (!dfs(to, isvisited, i, -1)) {
            cout << "Alice" << endl;
            return 0;
        }
    }
    cout << "Bob" << endl;
}
0