結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー tarattata1
提出日時 2020-01-31 22:15:43
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,037 bytes
コンパイル時間 961 ms
コンパイル使用メモリ 86,360 KB
実行使用メモリ 8,832 KB
最終ジャッジ日時 2024-09-17 08:35:49
合計ジャッジ時間 2,234 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 18 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <string>
#include <cstring>
#include <stdlib.h>
#include <math.h>
#include <algorithm>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <list>
#include <iterator>
#include <assert.h>
#include <time.h>
#pragma warning(disable:4996) 
 
typedef long long ll;
#define MIN(a, b) ((a)>(b)? (b): (a))
#define MAX(a, b) ((a)<(b)? (b): (a))
#define LINF 9223300000000000000
#define INF 2140000000
const long long MOD = 1000000007;
//const long long MOD = 998244353;
 
using namespace std;

 
int main(int argc, char* argv[])
{
    int n;
    scanf("%d", &n);
    vector<vector<int> > g(n);
    int i;
    for(i=0; i<n-1; i++) {
        int a,b;
        scanf("%d%d", &a, &b);
        g[a].push_back(b);
        g[b].push_back(a);
    }
    vector<int> cnt(n);
    for(i=0; i<n; i++) {
        cnt[i]=(int)g[i].size();
    }
    sort(cnt.begin(),cnt.end());
    if(cnt[0]+cnt[1]<=2) {
        printf("Alice\n");
    }
    else {
        printf("Bob\n");
    }

    return 0;
}
0