結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | onakaT_Titai |
提出日時 | 2020-03-09 19:14:28 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 81 ms / 2,000 ms |
コード長 | 3,116 bytes |
コンパイル時間 | 1,213 ms |
コンパイル使用メモリ | 118,324 KB |
実行使用メモリ | 13,100 KB |
最終ジャッジ日時 | 2024-04-26 06:28:17 |
合計ジャッジ時間 | 2,580 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | AC | 3 ms
7,756 KB |
testcase_05 | AC | 2 ms
6,948 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,944 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 9 ms
6,944 KB |
testcase_14 | AC | 8 ms
6,940 KB |
testcase_15 | AC | 8 ms
6,940 KB |
testcase_16 | AC | 10 ms
6,944 KB |
testcase_17 | AC | 10 ms
7,332 KB |
testcase_18 | AC | 27 ms
7,744 KB |
testcase_19 | AC | 29 ms
10,404 KB |
testcase_20 | AC | 38 ms
6,940 KB |
testcase_21 | AC | 59 ms
7,680 KB |
testcase_22 | AC | 77 ms
8,832 KB |
testcase_23 | AC | 73 ms
9,216 KB |
testcase_24 | AC | 81 ms
13,100 KB |
testcase_25 | AC | 74 ms
9,088 KB |
ソースコード
#define _USE_MATH_DEFINES #include <iostream> #include <fstream> #include <sstream> #include <string> #include <cstring> #include <vector> #include <set> #include <map> #include <unordered_map> #include <queue> #include <deque> #include <stack> #include <algorithm> #include <bitset> #include <cmath> #include <cstdlib> #include <ctime> #include <numeric> #include <functional> #include <cctype> #include <list> #include <limits> #include <cassert> #include <random> #include <time.h> #include <unordered_set> using namespace std; using Int = long long; constexpr double EPS = 1e-10; constexpr long long MOD = 1000000007; long long mod_pow(long long x, long long n) { long long res = 1; for (int i = 0;i < 60; i++) { if (n >> i & 1) res = res * x % MOD; x = x * x % MOD; } return res; } long long my_mod_pow(long long x, long long n) { long long ret = 1; for (; n > 0; n >>= 1, x = x * x % MOD) { if (n & 1) { ret = ret * x % MOD; } } return ret; } template<typename T> T gcd(T a, T b) { return b != 0 ? gcd(b, a % b) : a; } template<typename T> T lcm(T a, T b) { return a * b / gcd(a, b); } void fastInput() { cin.tie(0); ios::sync_with_stdio(false); } vector<int> connected_component; vector<vector<int>> G; int dfs(int crt) { for (int i = 0; i < G[crt].size(); i++) { int next_v = G[crt][i]; if (connected_component[next_v] == -1) { connected_component[next_v] = connected_component[crt]; dfs(next_v); } } return 0; } vector<pair<int, int> > bridge; vector<int> articulation; int ord[1000000], low[1000000]; bool vis[1000000]; void dfs(int v, int p, int &k) { vis[v] = true; ord[v] = k++; low[v] = ord[v]; bool isArticulation = false; int ct = 0; for (int i = 0; i < G[v].size(); i++){ if (!vis[G[v][i]]){ ct++; dfs(G[v][i], v, k); low[v] = min(low[v], low[G[v][i]]); if (~p && ord[v] <= low[G[v][i]]) isArticulation = true; if (ord[v] < low[G[v][i]]) bridge.push_back(make_pair(min(v, G[v][i]), max(v, G[v][i]))); } else if (G[v][i] != p){ low[v] = min(low[v], ord[G[v][i]]); } } if (p == -1 && ct > 1) isArticulation = true; if (isArticulation) articulation.push_back(v); } int main(void) { int N; cin >> N; connected_component = vector<int> (N, -1); G = vector<vector<int>>(N); for (int i = 0; i < N-1; i++) { int u, v; cin >> u >> v; G[u].push_back(v); G[v].push_back(u); } int cnt = 0; for (int i = 0; i < N; i++) { if (connected_component[i] == -1) { connected_component[i] = cnt; dfs(i); cnt++; } } if (cnt >= 3) { cout << "Alice" << endl; return 0; } if (cnt == 1) { cout << "Bob" << endl; return 0; } int k = 0; for (int i = 0; i < N; i++) { if (!vis[i]) dfs(i, -1, k); } if (cnt == 2) { if (bridge.size() == 0) { cout << "Bob" << endl; } else { cout << "Alice" << endl; } return 0; } }