結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー WarToksWarToks
提出日時 2020-01-31 21:44:40
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 708 bytes
コンパイル時間 631 ms
コンパイル使用メモリ 122,880 KB
実行使用メモリ 8,192 KB
最終ジャッジ日時 2024-05-07 20:18:43
合計ジャッジ時間 1,721 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 5 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 WA -
testcase_18 AC 12 ms
5,376 KB
testcase_19 AC 12 ms
5,376 KB
testcase_20 AC 18 ms
5,376 KB
testcase_21 AC 26 ms
6,912 KB
testcase_22 AC 36 ms
8,064 KB
testcase_23 AC 40 ms
8,192 KB
testcase_24 WA -
testcase_25 AC 39 ms
8,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <bitset>
#include <stack>
#include <vector>

constexpr int N = 1e5;
std::bitset<N> P;
std::vector<std::vector<int>> E;

int main(void){
    int n; scanf("%d", &n);
    E.assign(n, std::vector<int>(0));
    for(int i = 1; i < n; ++i){
        int u, v; scanf("%d%d", &u, &v);
        E[u].push_back(v); E[v].push_back(u);
    }
    std::stack<int> Stk; P[0] = true; Stk.push(0);
    while(not Stk.empty()){
        int v = Stk.top(); Stk.pop();
        for(int nv : E[v]) if(not P[nv]){
            P[nv] = true; Stk.push(nv);
        }
    }
    int cnt;{cnt = 0; for(int i = 0; i < n; ++i) if(P[i]) cnt++;}
    if(cnt >= n - 1) puts("Bob");
    else puts("Alice");
    return 0;
}
0