結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー ojisan_ITojisan_IT
提出日時 2020-03-09 19:25:39
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 2,019 bytes
コンパイル時間 1,632 ms
コンパイル使用メモリ 171,356 KB
実行使用メモリ 9,984 KB
最終ジャッジ日時 2024-04-26 06:55:24
合計ジャッジ時間 3,338 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 4 ms
6,944 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 4 ms
6,944 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 4 ms
6,940 KB
testcase_13 AC 14 ms
6,940 KB
testcase_14 AC 14 ms
6,944 KB
testcase_15 AC 12 ms
6,940 KB
testcase_16 AC 14 ms
6,944 KB
testcase_17 AC 13 ms
6,940 KB
testcase_18 AC 35 ms
7,552 KB
testcase_19 AC 35 ms
7,552 KB
testcase_20 AC 56 ms
7,996 KB
testcase_21 AC 88 ms
9,088 KB
testcase_22 AC 112 ms
9,728 KB
testcase_23 AC 119 ms
9,728 KB
testcase_24 AC 117 ms
9,800 KB
testcase_25 AC 122 ms
9,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
  }
}
0