Submission #1628357


Source Code Expand

#include<bits/stdc++.h>
const int N=100005;
using namespace std;
int n,tot,sg[N],head[N];
struct Edge{int u,v,next;}G[N<<1];
inline int read(){
	int f=1,x=0;char ch;
	do{ch=getchar();if(ch=='-')f=-1;}while(ch<'0'||ch>'9');
	do{x=x*10+ch-'0';ch=getchar();}while(ch>='0'&&ch<='9');
	return f*x;
}
inline void addedge(int u,int v){
	G[++tot].u=u;G[tot].v=v;G[tot].next=head[u];head[u]=tot;
	G[++tot].u=v;G[tot].v=u;G[tot].next=head[v];head[v]=tot;
}
inline int dfs(int u,int f){
	sg[u]=0;
	for(int i=head[u];i;i=G[i].next){
		int v=G[i].v;if(v==f)continue;
		sg[u]=sg[u]^(dfs(v,u)+1);
	}
	return sg[u];
}
int main(){
	n=read();
	for(int i=1;i<n;i++){
		int u=read(),v=read();
		addedge(u,v);
	}
	dfs(1,0);
	if(sg[1])puts("Alice");else puts("Bob");
}

Submission Info

Submission Time
Task D - Game on Tree
User zcysky
Language C++14 (GCC 5.4.1)
Score 1100
Code Size 777 Byte
Status AC
Exec Time 21 ms
Memory 6144 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 1100 / 1100
Status
AC × 4
AC × 43
Set Name Test Cases
Sample sample1.txt, sample2.txt, sample3.txt, sample4.txt
All sample1.txt, sample2.txt, sample3.txt, sample4.txt, a1.txt, a10.txt, a11.txt, a12.txt, a13.txt, a14.txt, a15.txt, a16.txt, a17.txt, a18.txt, a19.txt, a2.txt, a20.txt, a21.txt, a22.txt, a23.txt, a24.txt, a25.txt, a26.txt, a27.txt, a28.txt, a29.txt, a3.txt, a30.txt, a4.txt, a5.txt, a6.txt, a7.txt, a8.txt, a9.txt, b1.txt, b2.txt, b3.txt, b4.txt, b5.txt, sample1.txt, sample2.txt, sample3.txt, sample4.txt
Case Name Status Exec Time Memory
a1.txt AC 1 ms 256 KB
a10.txt AC 3 ms 640 KB
a11.txt AC 3 ms 640 KB
a12.txt AC 3 ms 640 KB
a13.txt AC 16 ms 3328 KB
a14.txt AC 17 ms 3328 KB
a15.txt AC 14 ms 2816 KB
a16.txt AC 17 ms 3456 KB
a17.txt AC 17 ms 3456 KB
a18.txt AC 18 ms 3456 KB
a19.txt AC 17 ms 3840 KB
a2.txt AC 2 ms 256 KB
a20.txt AC 18 ms 4096 KB
a21.txt AC 15 ms 3328 KB
a22.txt AC 17 ms 3328 KB
a23.txt AC 16 ms 3328 KB
a24.txt AC 13 ms 2816 KB
a25.txt AC 17 ms 3456 KB
a26.txt AC 16 ms 3456 KB
a27.txt AC 17 ms 3456 KB
a28.txt AC 17 ms 3840 KB
a29.txt AC 19 ms 4096 KB
a3.txt AC 2 ms 384 KB
a30.txt AC 15 ms 3328 KB
a4.txt AC 3 ms 512 KB
a5.txt AC 3 ms 512 KB
a6.txt AC 3 ms 512 KB
a7.txt AC 3 ms 512 KB
a8.txt AC 3 ms 640 KB
a9.txt AC 2 ms 640 KB
b1.txt AC 19 ms 6144 KB
b2.txt AC 18 ms 4736 KB
b3.txt AC 21 ms 6144 KB
b4.txt AC 20 ms 4736 KB
b5.txt AC 20 ms 4736 KB
sample1.txt AC 1 ms 256 KB
sample2.txt AC 2 ms 256 KB
sample3.txt AC 1 ms 256 KB
sample4.txt AC 1 ms 256 KB