結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | outline |
提出日時 | 2020-03-11 21:13:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,569 bytes |
コンパイル時間 | 988 ms |
コンパイル使用メモリ | 111,040 KB |
実行使用メモリ | 9,060 KB |
最終ジャッジ日時 | 2024-11-16 00:24:13 |
合計ジャッジ時間 | 2,297 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,888 KB |
testcase_01 | AC | 4 ms
5,888 KB |
testcase_02 | AC | 4 ms
5,888 KB |
testcase_03 | AC | 4 ms
6,016 KB |
testcase_04 | AC | 4 ms
5,760 KB |
testcase_05 | AC | 4 ms
5,888 KB |
testcase_06 | AC | 4 ms
5,760 KB |
testcase_07 | AC | 3 ms
5,888 KB |
testcase_08 | AC | 4 ms
5,760 KB |
testcase_09 | AC | 4 ms
5,888 KB |
testcase_10 | WA | - |
testcase_11 | AC | 4 ms
5,760 KB |
testcase_12 | AC | 4 ms
5,888 KB |
testcase_13 | AC | 6 ms
6,144 KB |
testcase_14 | AC | 6 ms
6,016 KB |
testcase_15 | AC | 6 ms
6,016 KB |
testcase_16 | AC | 7 ms
6,016 KB |
testcase_17 | AC | 7 ms
6,272 KB |
testcase_18 | AC | 14 ms
6,656 KB |
testcase_19 | WA | - |
testcase_20 | AC | 20 ms
7,552 KB |
testcase_21 | AC | 29 ms
8,192 KB |
testcase_22 | AC | 38 ms
8,832 KB |
testcase_23 | AC | 46 ms
8,832 KB |
testcase_24 | AC | 45 ms
9,060 KB |
testcase_25 | AC | 46 ms
8,824 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <cmath> #include <queue> #include <string> #include <map> #include <set> #include <stack> #include <tuple> #include <deque> #include <numeric> #include <bitset> #include <iomanip> #include <cassert> #include <chrono> #include <random> #include <limits> #include <iterator> #include <functional> #include <sstream> #include <complex> using namespace std; #define chmax(x, y) x = max(x, y) #define chmin(x, y) x = min(x, y) typedef long long ll; typedef uint64_t ull; typedef pair<int, int> P; typedef pair<int, double> Pid; typedef pair<double, int> Pdi; typedef pair<ll, int> Pl; typedef pair<int, pair<int, int>> PP; typedef pair<P, int> PPi; constexpr double PI = 3.1415926535897932; // acos(-1) constexpr double EPS = 1e-9; constexpr int INF = 1001001001; constexpr int mod = 1e+9 + 7; // constexpr int mod = 998244353; vector<int> graph[100005]; bool used[100005]; void dfs(int u = 0, int p = -1){ if(used[u]) return; used[u] = true; for(int v : graph[u]){ if(v == p) continue; dfs(v, u); } return; } int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; for(int i = 0; i < n - 1; ++i){ int u, v; cin >> u >> v; graph[u].push_back(v); graph[v].push_back(u); } dfs(0); bool flag = true; for(int i = 0; i < n; ++i){ if(!used[i]){ flag = false; break; } } if(!flag) cout << "Alice\n"; else cout << "Bob\n"; }