Submission #2165798


Source Code Expand

#include<iostream>
#include<cstdio>
#define MN 100000
using namespace std;
inline int read()
{
	int x=0,f=1;char ch=getchar();
	while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
	while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
	return x*f;
}
int n,head[MN+5],cnt=0,f[MN+5],v[MN+5],ans=0;
struct edge{int to,next;}e[MN*2+5];
inline void ins(int f,int t)
{
	e[++cnt]=(edge){t,head[f]};head[f]=cnt;
	e[++cnt]=(edge){f,head[t]};head[t]=cnt;	
}
void dfs(int x,int fa)
{
	int has=0,bad=0;
	for(int i=head[x];i;i=e[i].next)
		if(e[i].to!=fa)
		{
			dfs(e[i].to,x);
			bad|=(has&f[e[i].to]);
			has|=f[e[i].to];
		}
	for(v[x]=16;~v[x];--v[x]) if(bad&(1<<v[x])) break;
	for(++v[x];has&(1<<v[x]);++v[x]);
	f[x]=(has&((1<<17)-(1<<v[x])))|(1<<v[x]);
	ans=max(ans,v[x]);
}

int main()
{
	n=read();
	for(int i=1;i<n;++i) ins(read(),read());
	dfs(1,0);cout<<ans;
	return 0;
}

Submission Info

Submission Time
Task D - Uninity
User FallDream
Language C++14 (GCC 5.4.1)
Score 1400
Code Size 912 Byte
Status AC
Exec Time 22 ms
Memory 7552 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 1400 / 1400
Status
AC × 2
AC × 74
Set Name Test Cases
Sample s1.txt, s2.txt
All 01.txt, 02.txt, 03.txt, 04.txt, 05.txt, 06.txt, 07.txt, 08.txt, 09.txt, 10.txt, 11.txt, 12.txt, 13.txt, 14.txt, 15.txt, 16.txt, 17.txt, 18.txt, 19.txt, 20.txt, 21.txt, 22.txt, 23.txt, 24.txt, 25.txt, 26.txt, 27.txt, 28.txt, 29.txt, 30.txt, 31.txt, 32.txt, 33.txt, 34.txt, 35.txt, 36.txt, 37.txt, 38.txt, 39.txt, 40.txt, 41.txt, 42.txt, 43.txt, 44.txt, 45.txt, 46.txt, 47.txt, 48.txt, 49.txt, 50.txt, 51.txt, 52.txt, 53.txt, 54.txt, 55.txt, 56.txt, 57.txt, 58.txt, 59.txt, 60.txt, 61.txt, 62.txt, 63.txt, 64.txt, 65.txt, 66.txt, 67.txt, 68.txt, 69.txt, 70.txt, 71.txt, 72.txt, s1.txt, s2.txt
Case Name Status Exec Time Memory
01.txt AC 18 ms 2944 KB
02.txt AC 19 ms 2944 KB
03.txt AC 18 ms 2944 KB
04.txt AC 18 ms 2944 KB
05.txt AC 18 ms 2944 KB
06.txt AC 20 ms 2944 KB
07.txt AC 19 ms 2944 KB
08.txt AC 18 ms 2944 KB
09.txt AC 14 ms 4480 KB
10.txt AC 14 ms 5760 KB
11.txt AC 7 ms 2944 KB
12.txt AC 8 ms 3072 KB
13.txt AC 22 ms 7552 KB
14.txt AC 20 ms 7168 KB
15.txt AC 22 ms 6528 KB
16.txt AC 20 ms 4480 KB
17.txt AC 15 ms 2944 KB
18.txt AC 15 ms 2944 KB
19.txt AC 15 ms 2944 KB
20.txt AC 15 ms 2944 KB
21.txt AC 16 ms 2944 KB
22.txt AC 16 ms 2944 KB
23.txt AC 14 ms 2944 KB
24.txt AC 16 ms 2944 KB
25.txt AC 17 ms 2944 KB
26.txt AC 17 ms 2944 KB
27.txt AC 17 ms 3072 KB
28.txt AC 19 ms 2944 KB
29.txt AC 18 ms 2944 KB
30.txt AC 18 ms 2944 KB
31.txt AC 18 ms 2944 KB
32.txt AC 18 ms 2944 KB
33.txt AC 18 ms 2944 KB
34.txt AC 19 ms 2944 KB
35.txt AC 18 ms 2944 KB
36.txt AC 21 ms 2944 KB
37.txt AC 18 ms 2944 KB
38.txt AC 19 ms 2944 KB
39.txt AC 19 ms 2944 KB
40.txt AC 18 ms 2944 KB
41.txt AC 19 ms 3072 KB
42.txt AC 19 ms 2944 KB
43.txt AC 19 ms 2944 KB
44.txt AC 17 ms 3072 KB
45.txt AC 17 ms 3072 KB
46.txt AC 17 ms 3072 KB
47.txt AC 17 ms 3072 KB
48.txt AC 19 ms 3072 KB
49.txt AC 18 ms 3072 KB
50.txt AC 20 ms 3072 KB
51.txt AC 19 ms 3072 KB
52.txt AC 19 ms 3072 KB
53.txt AC 19 ms 3072 KB
54.txt AC 19 ms 3072 KB
55.txt AC 19 ms 3072 KB
56.txt AC 14 ms 2944 KB
57.txt AC 19 ms 6144 KB
58.txt AC 18 ms 6144 KB
59.txt AC 19 ms 3072 KB
60.txt AC 19 ms 3072 KB
61.txt AC 16 ms 3968 KB
62.txt AC 16 ms 3968 KB
63.txt AC 1 ms 256 KB
64.txt AC 1 ms 256 KB
65.txt AC 1 ms 256 KB
66.txt AC 1 ms 256 KB
67.txt AC 1 ms 256 KB
68.txt AC 1 ms 256 KB
69.txt AC 1 ms 256 KB
70.txt AC 1 ms 256 KB
71.txt AC 1 ms 256 KB
72.txt AC 1 ms 256 KB
s1.txt AC 1 ms 256 KB
s2.txt AC 1 ms 256 KB