結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー oxyshoweroxyshower
提出日時 2020-02-01 15:12:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,204 bytes
コンパイル時間 1,560 ms
コンパイル使用メモリ 173,296 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-18 20:02:03
合計ジャッジ時間 2,783 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#ifdef LOCAL_DEBUG
  #include "LOCAL_DEBUG.hpp"
#endif
#define int long long

struct UnionFind{
  vector<int> par; //親
  vector<int> size; //集合の大きさ

  UnionFind(int n){
    par.resize(n); size.resize(n, 1);
    for(int i = 0; i < n; i++){
      par[i] = i;
    }
  }

  //木の根を求める
  int root(int x){
    if(par[x] == x){
      return x;
    }else{
      return par[x] = root(par[x]);
    }
  }

  //xとyの属する集合を併合
  void unite(int x,int y){
    x = root(x), y = root(y);
    if(x == y) return;
    if(size[x] < size[y]) swap(x,y);
    par[y] = x;
    size[x] += size[y];
  }

  bool same(int x, int y){
    return root(x) == root(y);
  }
};

signed main(){

  int n; cin >> n;
  UnionFind uf(n);
  vector<int> indeg(n, 0);
  for(int i = 0; i < n-1; i++){
    int u, v; cin >> u >> v;
    uf.unite(u, v);
    indeg[u]++;
    indeg[v]++;
  }
  if(uf.size[uf.root(0)] == n-1){
    bool judge = true;
    for(int i = 0; i < n; i++){
      if(indeg[i] < 2) judge = false;
    }
    cout << (judge ? "Bob" : "Alice") << endl;
  }else{
    cout << (uf.size[uf.root(0)] == n ? "Bob" : "Alice") << endl;
  }

  return 0;
}
0