結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | outline |
提出日時 | 2020-03-12 01:06:13 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 56 ms / 2,000 ms |
コード長 | 3,102 bytes |
コンパイル時間 | 1,133 ms |
コンパイル使用メモリ | 119,492 KB |
実行使用メモリ | 11,436 KB |
最終ジャッジ日時 | 2024-04-27 22:06:02 |
合計ジャッジ時間 | 2,409 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 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 | 1 ms
6,944 KB |
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,940 KB |
testcase_12 | AC | 2 ms
6,940 KB |
testcase_13 | AC | 5 ms
6,940 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 | 15 ms
6,944 KB |
testcase_19 | AC | 17 ms
8,448 KB |
testcase_20 | AC | 24 ms
7,552 KB |
testcase_21 | AC | 34 ms
8,192 KB |
testcase_22 | AC | 45 ms
9,728 KB |
testcase_23 | AC | 49 ms
11,436 KB |
testcase_24 | AC | 52 ms
11,296 KB |
testcase_25 | AC | 56 ms
11,288 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; template<typename G> struct LowLink{ const G& g; vector<int> visited, order, low; vector<int> articulation; // 関節点 vector<pair<int, int>> bridge; // 橋 (order[from] < low[to]) int LinkSize = 0; LowLink(const G &g) : g(g) {} int dfs(int from, int k, int par = -1){ visited[from] = true; order[from] = k++; low[from] = order[from]; bool is_articulation = false; int cnt = 0; for(auto &to : g[from]){ if(!visited[to]){ ++cnt; k = dfs(to, k, from); low[from] = min(low[from], low[to]); // 頂点 from がDFS木の根以外であるときの関節点となる条件 is_articulation |= ~par && low[to] >= order[from]; // (from, to) が条件を満たせば、橋に追加 if(order[from] < low[to]) bridge.emplace_back(minmax(from, (int)to)); } else if(to != par){ low[from] = min(low[from], order[to]); } } // 頂点 from がDFS木の根であるときの関節点となる条件 is_articulation |= par == -1 && cnt > 1; if(is_articulation) articulation.push_back(from); return k; } virtual void build(){ visited.assign(g.size(), 0); order.assign(g.size(), 0); low.assign(g.size(), 0); int k = 0; for(int i = 0; i < g.size(); ++i){ if(!visited[i]) k = dfs(i, k), ++LinkSize; } } }; using G = vector<vector<int>>; G graph; int main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin >> n; graph.resize(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); } LowLink<G> lowlink(graph); lowlink.build(); int LinkSize = lowlink.LinkSize; if(LinkSize == 1){ puts("Bob"); return 0; } if(LinkSize >= 3){ puts("Alice"); return 0; } int BridgeSize = lowlink.bridge.size(); if(BridgeSize == 0) puts("Bob"); else puts("Alice"); }