結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー kagasankagasan
提出日時 2020-03-09 19:02:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 1,317 bytes
コンパイル時間 1,540 ms
コンパイル使用メモリ 166,344 KB
実行使用メモリ 12,096 KB
最終ジャッジ日時 2024-04-26 06:06:57
合計ジャッジ時間 3,101 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,368 KB
testcase_01 AC 3 ms
7,240 KB
testcase_02 AC 3 ms
6,948 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,980 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
7,492 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 3 ms
6,944 KB
testcase_13 AC 10 ms
7,232 KB
testcase_14 AC 10 ms
8,000 KB
testcase_15 AC 10 ms
7,368 KB
testcase_16 AC 10 ms
7,880 KB
testcase_17 AC 10 ms
8,392 KB
testcase_18 AC 26 ms
8,260 KB
testcase_19 AC 31 ms
9,928 KB
testcase_20 AC 42 ms
10,308 KB
testcase_21 AC 68 ms
10,184 KB
testcase_22 AC 88 ms
11,204 KB
testcase_23 AC 92 ms
12,096 KB
testcase_24 AC 91 ms
11,840 KB
testcase_25 AC 95 ms
11,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// https://algo-logic.info/bridge-lowlink/
#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
typedef vector<ll> V;
#define rep(i, n) for(ll (i) = 0; (i) < (n); (i)++)
template<class T> void chmin(T &a, const T &b){if(a > b){a = b;}}

ll N;
V path[101010];
ll used[101010];
ll ord[101010];
ll low[101010];
ll br = 0;

ll dfs(ll id, ll k, ll par){
    used[id] = 1;
    ord[id] = k++;
    low[id] = ord[id];
    bool is_aps = false;
    ll cnt = 0;
    for(auto to : path[id]){
        if(used[to] == 0){
            cnt++;
            k = dfs(to, k, id);
            chmin(low[id], low[to]);
            if (par != -1 && ord[id] <= low[to]) is_aps = true;
            if (ord[id] < low[to])br++;
        }
        else if(to != par){
            chmin(low[id], ord[to]);
        }
    }
    if (par == -1 && cnt >= 2) is_aps = true;
    return k;
}

ll lowlink(){
    ll k = 0;
    ll cnt = 0;
    rep(i, N)if(used[i] == 0){
        k = dfs(i, k, -1);
        cnt++;
    }
    if(cnt == 1)return 1;
    if(cnt == 2 && br == 0)return 1;
    return 0;
}

int main(){

    cin >> N;
    rep(i, N - 1){
        ll a, b;
        cin >> a >> b;
        path[a].push_back(b);
        path[b].push_back(a);
    }

    if(lowlink())cout << "Bob" << endl;
    else cout << "Alice" << endl;
    
    return 0;
}
0