結果
問題 | No.977 アリス仕掛けの摩天楼 |
ユーザー | はまやんはまやん |
提出日時 | 2020-02-01 09:06:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 106 ms / 2,000 ms |
コード長 | 3,719 bytes |
コンパイル時間 | 2,673 ms |
コンパイル使用メモリ | 222,936 KB |
実行使用メモリ | 17,376 KB |
最終ジャッジ日時 | 2024-09-18 19:44:39 |
合計ジャッジ時間 | 4,195 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 9 ms
5,376 KB |
testcase_14 | AC | 8 ms
5,376 KB |
testcase_15 | AC | 8 ms
5,376 KB |
testcase_16 | AC | 9 ms
5,376 KB |
testcase_17 | AC | 8 ms
5,632 KB |
testcase_18 | AC | 24 ms
7,412 KB |
testcase_19 | AC | 22 ms
9,728 KB |
testcase_20 | AC | 31 ms
8,448 KB |
testcase_21 | AC | 55 ms
9,056 KB |
testcase_22 | AC | 75 ms
10,980 KB |
testcase_23 | AC | 106 ms
17,128 KB |
testcase_24 | AC | 100 ms
17,376 KB |
testcase_25 | AC | 100 ms
17,232 KB |
ソースコード
#include<bits/stdc++.h> #define rep(i,a,b) for(int i=a;i<b;i++) #define rrep(i,a,b) for(int i=a;i>=b;i--) #define fore(i,a) for(auto &i:a) #define all(x) (x).begin(),(x).end() //#pragma GCC optimize ("-O3") using namespace std; void _main(); int main() { cin.tie(0); ios::sync_with_stdio(false); _main(); } typedef long long ll; const int inf = INT_MAX / 2; const ll infl = 1LL << 60; template<class T>bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; } template<class T>bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; } //--------------------------------------------------------------------------------------------------- struct UnionFind { vector<int> par; // uf(x,y)->y UnionFind() {} UnionFind(int NV) { init(NV); } void init(int NV) { par.clear(); rep(i, 0, NV) par.push_back(i); } void reset() { rep(i, 0, par.size()) par[i] = i; } int operator[](int x) { return par[x] == x ? x : par[x] = operator[](par[x]); } void operator()(int x, int y) { x = operator[](x); y = operator[](y); if (x != y) par[x] = y; } }; struct BridgeSCC { int NV = 0, time; vector<vector<int> > E; vector<int> ord, llink, inin; stack<int> roots, S; vector<int> M, ART; vector<vector<int> > SC; vector<pair<int, int> > BR; void init(int NV) { this->NV = NV; E.clear(); E.resize(NV); } void add_edge(int x, int y) { assert(NV); E[x].push_back(y); E[y].push_back(x); } void dfs(int cur, int pre) { int art = 0, conn = 0, i, se = 0; ord[cur] = llink[cur] = ++time; S.push(cur); inin[cur] = 1; roots.push(cur); rep(i, 0, E[cur].size()) { int tar = E[cur][i]; if (ord[tar] == 0) { conn++; dfs(tar, cur); llink[cur] = min(llink[cur], llink[tar]); art += (pre != -1 && ord[cur] <= llink[tar]); if (ord[cur] < llink[tar]) BR.push_back(make_pair(min(cur, tar), max(cur, tar))); } else if (tar != pre || se) { llink[cur] = min(llink[cur], ord[tar]); while (inin[tar] && ord[roots.top()] > ord[tar]) roots.pop(); } else se++; } if (cur == roots.top()) { SC.push_back(vector<int>()); while (1) { i = S.top(); S.pop(); inin[i] = 0; SC.back().push_back(i); M[i] = SC.size() - 1; if (i == cur) break; }sort(SC.back().begin(), SC.back().end()); roots.pop(); } if (art || (pre == -1 && conn > 1)) ART.push_back(cur); } void scc() { SC.clear(), BR.clear(), ART.clear(), M.resize(NV); ord.clear(), llink.clear(), inin.clear(); time = 0; ord.resize(NV); llink.resize(NV); inin.resize(NV); for (int i = 0; i < NV; i++) if (!ord[i]) dfs(i, -1); sort(BR.begin(), BR.end()); sort(ART.begin(), ART.end()); } }; /*--------------------------------------------------------------------------------------------------- ∧_∧ ∧_∧ (´<_` ) Welcome to My Coding Space! ( ´_ゝ`) / ⌒i @hamayanhamayan0 / \ | | / / ̄ ̄ ̄ ̄/ | __(__ニつ/ _/ .| .|____ \/____/ (u ⊃ ---------------------------------------------------------------------------------------------------*/ int N; //--------------------------------------------------------------------------------------------------- void _main() { cin >> N; UnionFind uf(N); BridgeSCC scc; scc.init(N); rep(i, 0, N - 1) { int a, b; cin >> a >> b; uf(a, b); scc.add_edge(a, b); } scc.scc(); int cnt = 0; rep(i, 0, N) if (uf[i] == i) cnt++; if (0 < scc.BR.size()) cnt++; if (3 <= cnt) cout << "Alice" << endl; else cout << "Bob" << endl; }