結果

問題 No.977 アリス仕掛けの摩天楼
ユーザー HaaHaa
提出日時 2020-01-31 21:58:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 80 ms / 2,000 ms
コード長 1,237 bytes
コンパイル時間 1,677 ms
コンパイル使用メモリ 175,664 KB
実行使用メモリ 9,216 KB
最終ジャッジ日時 2024-09-17 08:08:16
合計ジャッジ時間 2,826 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 3 ms
6,944 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 9 ms
6,944 KB
testcase_14 AC 10 ms
6,944 KB
testcase_15 AC 9 ms
6,944 KB
testcase_16 AC 9 ms
6,940 KB
testcase_17 AC 10 ms
6,944 KB
testcase_18 AC 24 ms
6,940 KB
testcase_19 AC 24 ms
7,936 KB
testcase_20 AC 34 ms
7,680 KB
testcase_21 AC 50 ms
7,936 KB
testcase_22 AC 66 ms
8,704 KB
testcase_23 AC 80 ms
9,216 KB
testcase_24 AC 78 ms
9,216 KB
testcase_25 AC 80 ms
9,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> P;
typedef vector<ll> VI;
typedef vector<VI> VVI;
const ll MOD = 1000000007;
const ll INF = 2147483647;
const ll LINF = 9223372036854775807;
#define REP(i, n) for(int i = 0; i < n; i++)
#define ALL(v) v.begin(), v.end()

VVI edge(100001, VI(0));
vector<bool> f(100001, 0);
bool ff = 0;

void dfs(int v) {
	f[v] = 1;
	if (edge[v].size() != 2)
		ff = 1;
	for (int i = 0; i < edge[v].size(); i++) {
		if (!f[edge[v][i]]) {
			dfs(edge[v][i]);
		}
	}
}

void dfs2(int v) {
	f[v] = 1;
	if (edge[v].size() != 2)
		ff = 1;
	for (int i = 0; i < edge[v].size(); i++) {
		if (!f[edge[v][i]]) {
			dfs(edge[v][i]);
		}
	}
}

int main() {
	int n; cin >> n;
	int a, b;
	REP(i, n - 1) {
		cin >> a >> b;
		edge[a].push_back(b);
		edge[b].push_back(a);
	}
	ff = 0;
	dfs(0);
	if (!ff) {
		int c = 0;
		REP(i, n) {
			if (!f[i]) {
				c++;
			}
		}
		if (c == 1) {
			cout << "Bob" << endl;
		}
		else {
			cout << "Alice" << endl;
		}
		return 0;
	}
	REP(i, n) f[i] = 0;
	ff = 0;
	dfs2(1);
	if (!ff) {
		cout << "Bob" << endl;
	}
	else {
		REP(i, n) {
			if (!f[i]) {
				cout << "Alice" << endl;
				return 0;
			}
		}
		cout << "Bob" << endl;
	}
	return 0;
}
0