結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー veqccveqcc
提出日時 2020-01-31 22:12:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,232 bytes
コンパイル時間 1,100 ms
コンパイル使用メモリ 109,976 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-09-17 08:27:39
合計ジャッジ時間 2,251 ms
ジャッジサーバーID
(参考情報)
judge1 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,812 KB
testcase_01 AC 4 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 3 ms
6,948 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 4 ms
6,944 KB
testcase_10 WA -
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 WA -
testcase_14 AC 7 ms
6,944 KB
testcase_15 AC 8 ms
6,944 KB
testcase_16 WA -
testcase_17 AC 7 ms
6,940 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 24 ms
7,612 KB
testcase_21 AC 38 ms
7,904 KB
testcase_22 AC 60 ms
8,576 KB
testcase_23 AC 57 ms
8,832 KB
testcase_24 AC 51 ms
8,832 KB
testcase_25 AC 57 ms
8,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <functional>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <cstring>
#include <string>
#include <vector>
#include <random>
#include <bitset>
#include <queue>
#include <cmath>
#include <stack>
#include <set>
#include <map>
typedef long long ll;
using namespace std;
const ll MOD = 1000000007LL;

vector < vector <int> > edge(100005);
vector <bool> visited(100005);

void dfs(int cur) {
    visited[cur] = 1;
    for (int nxt : edge[cur]) {
        if (!visited[nxt]) {
            dfs(nxt);
        }
    }
}

int main() {
    cin.sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);

    int n;
    cin >> n;

    for (int i = 1; i < n; i++) {
        int u, v;
        cin >> u >> v;
        edge[u].push_back(v);
        edge[v].push_back(u);
    }

    int isolated_count = 0;
    int separated_count = 0;
    for (int i = 0; i < n; i++) {
        if (edge[i].size() == 0) {
            isolated_count++;
        }
        
        if (!visited[i]) {
            separated_count++;
            dfs(i);
        }
    }

    if (separated_count > 2 || (separated_count == 2 && isolated_count)) {
        cout << "Alice" << '\n';
    } else {
        cout << "Bob" << '\n';
    }

    return 0;
}
0