結果
問題 |
No.977 アリス仕掛けの摩天楼
|
ユーザー |
![]() |
提出日時 | 2020-03-09 19:25:39 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 130 ms / 2,000 ms |
コード長 | 2,019 bytes |
コンパイル時間 | 1,638 ms |
コンパイル使用メモリ | 173,552 KB |
実行使用メモリ | 9,856 KB |
最終ジャッジ日時 | 2024-11-08 19:53:55 |
合計ジャッジ時間 | 3,413 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 26 |
ソースコード
#include<bits/stdc++.h> using namespace std; #define rep(i,n) for(int i=0;i<(int)(n);i++) #define pb push_back #define mt make_tuple #define ALL(a) (a).begin(),(a).end() #define FST first #define SEC second #define DEB cerr<<"!"<<endl #define SHOW(a,b) cerr<<(a)<<" "<<(b)<<endl #define ll long long #define vi vector<int> const int INF = (INT_MAX/2); const ll LLINF = (LLONG_MAX/2); const double eps = 1e-8; const ll DIV =1e9+7; //const double PI = M_PI; inline ll pow(ll x,ll n,ll m){ll r=1;while(n>0){if((n&1)==1)r=r*x%m;x=x*x%m;n>>=1;}return r%m;} inline ll lcm(ll d1, ll d2){return d1 / __gcd(d1, d2) * d2;} #define chmax(a,b) a=max(a,b) /*Coding Space*/ vector<int> G[100005]; class UF{ public: vi value; vi over; // When over < 0, 'over' keep number of node(using negative number). -1 means this tree is a node. int root(int index){ int t = index; stack<int> stack_i; while(over[t] >= 0){ stack_i.push(t); t = over[t]; } while(!stack_i.empty()){ int i = stack_i.top(); stack_i.pop(); over[i] = t; }// reconnect return t; } void merge(int a,int b){ if(this->root(a) == this->root(b)) return; over[root(a)] += over[root(b)]; // over[] have the number of nodes. over[root(b)] = root(a); } int NumNode(int a){ return -over[root(a)]; } UF(int Nodes){ value.resize(Nodes); over.resize(Nodes); rep(i,Nodes) over[i] = -1; } }; /* verify yukicoder 556 ARC032 B ARC037 B (It is difficult to keep status of cycle graph. Use 'value' to keep it.) */ UF uf(100005); int c[100005]; int main(){ int n; cin >> n; rep(i,n-1){ int u,v; cin >> u >> v; G[u].pb(v); G[v].pb(u); uf.merge(u,v); c[u]++; c[v]++; } int cnt = 0; rep(i,n)if(i == uf.root(i))cnt++; if(cnt == 1){ cout << "Bob" << endl; }else if(cnt > 2){ cout << "Alice" << endl; }else{ int cc = 0; rep(i,n) if(c[i] == 1) cc++; if(cc == 0) cout << "Bob" << endl; else cout << "Alice" << endl; } }