結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー rok_dwrok_dw
提出日時 2020-03-20 06:17:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,276 bytes
コンパイル時間 1,610 ms
コンパイル使用メモリ 172,112 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-08 03:48:26
合計ジャッジ時間 2,661 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
typedef vector<int> vi;
typedef vector<ll> vl;
typedef pair<int,int> pii;

typedef int _loop_int;
#define REP(i,n) for(_loop_int i=0;i<(_loop_int)(n);++i)
#define FOR(i,a,b) for(_loop_int i=(_loop_int)(a);i<(_loop_int)(b);++i)
#define FORR(i,a,b) for(_loop_int i=(_loop_int)(b)-1;i>=(_loop_int)(a);--i)

#define DEBUG(x) cout<<#x<<": "<<x<<endl
#define DEBUG2(x,y) cout<<#x<<": "<<x<<" "<<#y<<": "<<y<<endl
#define DEBUG_VEC(v) cout<<#v<<":";REP(i,v.size())cout<<" "<<v[i];cout<<endl
#define ALL(a) (a).begin(),(a).end()

const ll MOD = 1000000007ll;
#define FIX(a) ((a)%MOD+MOD)%MOD

template<typename T>
class UnionFind {
    vector<T> parent;
    vector<T> rank;
public:
    UnionFind(T n) {
        init(n);
    }

    void init(T n) {
        parent.clear();
        rank.clear();
        for(int i=0; i<n; i++){
            parent.emplace_back(i);
            rank.emplace_back(0);
        }
    }

    int find(T x){
        if(parent[x] == x)
            return x;
        else
            return parent[x] = find(parent[x]);
    }

    void unite(T x, T y){
        x = find(x);
        y = find(y);
        if(x==y) return;
        if(rank[x] < rank[y]){
            parent[x] = y;
        } else {
            parent[y] = x;
            if(rank[x] == rank[y]) rank[x]++;
        }
    }

    bool same(T x, T y){
        return find(x) == find(y);
    }
};

const int N = 10e4+5;
int n;

int main() {
    ios::sync_with_stdio(false); cin.tie(0);
    cin>>n;
    int bridges[N]={};
    UnionFind<int> uf(n);

    REP(i,n-1){
        int u,v;
        cin>>u>>v;
        bridges[u]++;
        bridges[v]++;
        uf.unite(u,v);
    }

    bool is_united = true;
    int root = uf.find(0);
    FOR(i,1,n){
        if(root != uf.find(i)){
            is_united = false;
            break;
        }
    }

    bool flg = false;
    int cnt = 0;
    if(!is_united) cnt+=1;
    REP(i,n){
        //DEBUG(bridges[i]);
        if(!flg&&bridges[i]==1){
            flg=true;
            cnt++;
        }
        else if(bridges[i]==0){
            cnt++;
        }

        if(cnt>=2){
            cout << "Alice" << endl;
            return 0;
        }
    }
    cout << "Bob" << endl;
    return 0;
}
0