結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 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 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 WA -
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 5 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 5 ms
5,376 KB
testcase_18 AC 12 ms
5,376 KB
testcase_19 WA -
testcase_20 AC 17 ms
5,376 KB
testcase_21 AC 26 ms
6,912 KB
testcase_22 AC 33 ms
7,936 KB
testcase_23 AC 40 ms
8,192 KB
testcase_24 AC 38 ms
8,064 KB
testcase_25 AC 38 ms
8,320 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) puts("Bob");
    else puts("Alice");
    return 0;
}
0