結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー nejinejinejineji
提出日時 2020-01-31 21:50:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 1,690 bytes
コンパイル時間 579 ms
コンパイル使用メモリ 72,316 KB
実行使用メモリ 10,112 KB
最終ジャッジ日時 2024-09-17 07:52:08
合計ジャッジ時間 1,834 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 7 ms
6,944 KB
testcase_14 AC 7 ms
6,940 KB
testcase_15 AC 7 ms
6,940 KB
testcase_16 AC 7 ms
6,940 KB
testcase_17 AC 8 ms
6,940 KB
testcase_18 AC 22 ms
6,944 KB
testcase_19 AC 23 ms
7,040 KB
testcase_20 AC 36 ms
6,940 KB
testcase_21 AC 54 ms
7,936 KB
testcase_22 AC 69 ms
9,344 KB
testcase_23 AC 73 ms
9,984 KB
testcase_24 AC 72 ms
9,984 KB
testcase_25 AC 74 ms
10,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#include <bits/stdc++.h>
#include<iostream>
#include<vector>
#define REP(i, x, y) for (ll i = x; i <= y; i++)
#define BIT(t) (1ll << t)
#define PER(i, y, x) for (ll i = y; i >= x; i--)
#define vll vector<ll>
#define vvll vector<vector<ll>>
#define pll pair<ll, ll>
#define SIZE(v) ll(v.size())
#define UNIQUE(v) v.erase(unique(v.begin(), v.end()), v.end());
using namespace std;
typedef long long ll;
//        ios::sync_with_stdio(false);
//        cin.tie(nullptr);

void dfs(ll n,ll cur, vll& color, vvll& g){
        if(color[cur] == 1){
                return;
        }else{
                color[cur] = 1;
                for(auto x: g[cur]){
                        if(color[x] == 0){
                                dfs(n, x, color, g);
                        }
                }
        }
}

int main(){
        ll n;
        cin >> n;
        vvll g(n);
        REP(i,1,n-1){
                ll u,v;
                cin >> u >> v;
                g[u].push_back(v);
                g[v].push_back(u);
        }
        vll color(n,0);
        ll conn = 0;
        REP(i,0,n-1){
                if(color[i] == 0){
                        dfs(n,i,color, g);
                        conn++;
                }
        }
        if(conn == 1){
                cout << "Bob" << endl;
                return 0;
        }else if(conn == 2){
                REP(i,0,n-1){
                        if(g[i].size()==1 || g[i].size() > 2){
                                cout << "Alice" << endl;
                                return 0;
                        }
                }
                cout << "Bob" << endl;
        }else{
                cout << "Alice" << endl;
        }

}
0