結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | veqcc |
提出日時 | 2020-01-31 22:17:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 41 ms / 2,000 ms |
コード長 | 1,564 bytes |
コンパイル時間 | 925 ms |
コンパイル使用メモリ | 110,756 KB |
実行使用メモリ | 8,704 KB |
最終ジャッジ日時 | 2024-09-17 08:38:56 |
合計ジャッジ時間 | 2,301 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 3 ms
6,944 KB |
testcase_02 | AC | 3 ms
6,944 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 3 ms
6,944 KB |
testcase_05 | AC | 4 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 3 ms
6,940 KB |
testcase_08 | AC | 3 ms
6,940 KB |
testcase_09 | AC | 3 ms
6,940 KB |
testcase_10 | AC | 4 ms
6,944 KB |
testcase_11 | AC | 3 ms
6,940 KB |
testcase_12 | AC | 3 ms
6,940 KB |
testcase_13 | AC | 5 ms
6,944 KB |
testcase_14 | AC | 6 ms
6,944 KB |
testcase_15 | AC | 6 ms
6,940 KB |
testcase_16 | AC | 6 ms
6,940 KB |
testcase_17 | AC | 6 ms
6,944 KB |
testcase_18 | AC | 13 ms
6,940 KB |
testcase_19 | AC | 14 ms
7,796 KB |
testcase_20 | AC | 21 ms
7,552 KB |
testcase_21 | AC | 29 ms
7,808 KB |
testcase_22 | AC | 38 ms
8,576 KB |
testcase_23 | AC | 39 ms
8,704 KB |
testcase_24 | AC | 41 ms
8,704 KB |
testcase_25 | AC | 40 ms
8,704 KB |
ソースコード
#include <functional> #include <algorithm> #include <iostream> #include <iomanip> #include <cstring> #include <string> #include <vector> #include <random> #include <bitset> #include <queue> #include <cmath> #include <stack> #include <set> #include <map> typedef long long ll; using namespace std; const ll MOD = 1000000007LL; vector < vector <int> > edge(100005); vector <bool> visited(100005); void dfs(int cur) { visited[cur] = 1; for (int nxt : edge[cur]) { if (!visited[nxt]) { dfs(nxt); } } } int main() { cin.sync_with_stdio(false); cin.tie(0); cout.tie(0); int n; cin >> n; for (int i = 1; i < n; i++) { int u, v; cin >> u >> v; edge[u].push_back(v); edge[v].push_back(u); } int isolated_count = 0; int have_one_edge = 0; int separated_count = 0; for (int i = 0; i < n; i++) { if (edge[i].size() == 0) { isolated_count++; } else if (edge[i].size() == 1) { have_one_edge++; } if (!visited[i]) { separated_count++; dfs(i); } } if (separated_count > 2) { cout << "Alice" << '\n'; } else if (separated_count == 2) { if (isolated_count == 0) { cout << "Alice" << '\n'; } else { if (have_one_edge) { cout << "Alice" << '\n'; } else { cout << "Bob" << '\n'; } } } else { cout << "Bob" << '\n'; } return 0; }