結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | cotton_fn_ |
提出日時 | 2020-01-31 23:02:20 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,590 bytes |
コンパイル時間 | 1,144 ms |
コンパイル使用メモリ | 123,912 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-09-17 10:06:38 |
合計ジャッジ時間 | 2,677 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 7 ms
6,940 KB |
testcase_14 | AC | 8 ms
6,944 KB |
testcase_15 | AC | 7 ms
6,940 KB |
testcase_16 | AC | 7 ms
6,940 KB |
testcase_17 | AC | 7 ms
6,940 KB |
testcase_18 | AC | 19 ms
6,940 KB |
testcase_19 | AC | 19 ms
6,940 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 63 ms
6,940 KB |
testcase_24 | AC | 62 ms
6,944 KB |
testcase_25 | AC | 63 ms
6,944 KB |
ソースコード
#include <iostream> #include <cstdio> #include <cstring> #include <vector> #include <deque> #include <queue> #include <array> #include <set> #include <map> #include <cmath> #include <complex> #include <algorithm> #include <numeric> #include <utility> #include <tuple> #include <functional> #include <bitset> #include <cstdint> #include <cassert> #include <random> using namespace std; using i64 = int64_t; using i32 = int32_t; template<class T> T iabs(const T& x) { return max(x, -x); } struct UnionFind { vector<int> p, s; UnionFind(size_t n) : p(n, -1), s(n, 1) {} int root(int u) { while (p[u] != -1) u = p[u]; return u; } bool same(int i, int j) { return root(i) == root(j); } void unite(int u, int v) { u = root(u); v = root(v); if (u != v) { if (s[u] < s[v]) swap(u, v); p[v] = u; s[u] += s[v]; } } int size(int i) { return s[root(i)]; } }; int n; int main() { cin >> n; vector<int> deg(n); UnionFind uf(n); for (int i = 0; i < n - 1; ++i) { int u, v; cin >> u >> v; deg[u]++; deg[v]++; uf.unite(u, v); } if (uf.size(0) == n) { cout << "Bob\n"; return 0; } int cnt0 = 0, cnt2 = 0; for (int u = 0; u < n; ++u) { if (deg[u] == 0) { ++cnt0; } if (deg[u] == 2) { ++cnt2; } } if (cnt0 == 1 && cnt2 == n - 1) { cout << "Bob\n"; return 0; } cout << "Alice\n"; return 0; }