結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | seriru13 |
提出日時 | 2020-01-31 22:31:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,876 bytes |
コンパイル時間 | 2,106 ms |
コンパイル使用メモリ | 204,468 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-17 09:06:57 |
合計ジャッジ時間 | 3,527 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | WA | - |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 7 ms
6,940 KB |
testcase_14 | AC | 7 ms
6,940 KB |
testcase_15 | AC | 7 ms
6,940 KB |
testcase_16 | AC | 8 ms
6,944 KB |
testcase_17 | AC | 7 ms
6,940 KB |
testcase_18 | AC | 19 ms
6,948 KB |
testcase_19 | WA | - |
testcase_20 | AC | 30 ms
6,940 KB |
testcase_21 | AC | 46 ms
6,944 KB |
testcase_22 | AC | 59 ms
6,940 KB |
testcase_23 | AC | 62 ms
6,940 KB |
testcase_24 | AC | 64 ms
6,944 KB |
testcase_25 | AC | 63 ms
6,940 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define inf 10e17 #define rep(i,n) for(long long i=0; i<n; i++) #define repr(i,n,m) for(long long i=m; i<n; i++) #define mod 1000000007 #define sorti(x) sort(x.begin(), x.end()) #define sortd(x) sort(x.begin(), x.end(), std::greater<long long>()) #define debug(x) std::cerr << (x) << std::endl; #define roll(x) for (auto&& itr : x) { cerr << (itr) << " "; } template <class T> inline void chmax(T &ans, T t) { if (t > ans) ans = t;} template <class T> inline void chmin(T &ans, T t) { if (t < ans) ans = t;} /* Union-Find-Tree */ /* 必ず要素数をコンストラクタに入れること */ template <class T = long long> class Union_Find { using size_type = std::size_t; using _Tp = T; public: vector<_Tp> par; vector<_Tp> rnk; // 親の根を返す。値の変更は認めない。 const _Tp & operator[] (size_type child) { find(child); return par[child]; } Union_Find (size_type n) { par.resize(n), rnk.resize(n); for (int i = 0; i < n; ++i) { par[i] = i; rnk[i] = 0; } } // 木の根を求める _Tp find(_Tp x) { if (par[x] == x) return x; else return par[x] = find(par[x]); } // xとyの属する集合を併合 void merge(_Tp x, _Tp y) { x = find(x); y = find(y); if (x == y) return; if (rnk[x] < rnk[y]) { par[x] = y; } else { par[y] = x; if (rnk[x] == rnk[y]) rnk[x]++; } } // xとyが同じ集合に属するか否か bool same(_Tp x, _Tp y) { return find(x) == find(y); } }; int main() { ll n; cin >> n; Union_Find<int> uf(n); rep(i, n-1) { int u, v; cin >> u >> v; uf.merge(u, v); } int root = uf.find(0); rep(i, n) { if (uf.find(i) != root) { cout << "Alice\n"; return 0; } } cout << "Bob\n"; }