Submission #1575174


Source Code Expand

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int,int> P;
typedef pair<int,P> P1;
typedef pair<P,P> P2;
#define pu push
#define pb push_back
#define mp make_pair
#define eps 1e-7
#define INF 1000000000
#define mod 1000000007
#define fi first
#define sc second
#define rep(i,x) for(int i=0;i<x;i++)
#define repn(i,x) for(int i=1;i<=x;i++)
#define SORT(x) sort(x.begin(),x.end())
#define ERASE(x) x.erase(unique(x.begin(),x.end()),x.end())
#define POSL(x,v) (lower_bound(x.begin(),x.end(),v)-x.begin())
#define POSU(x,v) (upper_bound(x.begin(),x.end(),v)-x.begin())
//very good problem
vector<int>edge[100005];
int n;
int dfs(int v,int u){
	int cnt[20]={}; vector<int>vec;
	for(int i=0;i<edge[v].size();i++){
		if(u == edge[v][i]) continue;
		int y = dfs(edge[v][i],v);
		rep(j,20) if(((y>>j)&1)) cnt[j]++;
		vec.pb(y);
	}
	int mx = INF;
	for(int j=19;j>=0;j--){
		if(cnt[j] == 0) mx=j;
		else if(cnt[j] >= 2) break;
	}
	int ret = (1<<mx);
	for(int i=0;i<vec.size();i++){
		int x = vec[i]/(1<<mx) * (1<<mx);
		ret |= x;
	}
	return ret;
}
int main(){
	cin>>n;
	rep(i,n-1){
		int a,b;cin>>a>>b;
		edge[a].pb(b);
		edge[b].pb(a);
	}
	int x = dfs(1,-1);
	rep(i,20) if(((x>>(19-i))&1)) {cout<<19-i<<endl;return 0;}
}

Submission Info

Submission Time
Task D - Uninity
User IH19980412
Language C++14 (GCC 5.4.1)
Score 1400
Code Size 1296 Byte
Status AC
Exec Time 101 ms
Memory 19456 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 90 ms 5884 KB
02.txt AC 87 ms 5888 KB
03.txt AC 87 ms 5888 KB
04.txt AC 87 ms 5888 KB
05.txt AC 91 ms 5888 KB
06.txt AC 87 ms 5888 KB
07.txt AC 87 ms 5888 KB
08.txt AC 87 ms 5888 KB
09.txt AC 64 ms 11904 KB
10.txt AC 66 ms 15616 KB
11.txt AC 33 ms 8832 KB
12.txt AC 33 ms 9472 KB
13.txt AC 101 ms 19456 KB
14.txt AC 90 ms 18816 KB
15.txt AC 98 ms 16640 KB
16.txt AC 94 ms 10624 KB
17.txt AC 73 ms 6612 KB
18.txt AC 73 ms 6540 KB
19.txt AC 75 ms 6528 KB
20.txt AC 75 ms 6524 KB
21.txt AC 76 ms 6272 KB
22.txt AC 77 ms 6400 KB
23.txt AC 73 ms 6904 KB
24.txt AC 74 ms 6904 KB
25.txt AC 79 ms 6396 KB
26.txt AC 81 ms 6016 KB
27.txt AC 81 ms 6016 KB
28.txt AC 84 ms 6016 KB
29.txt AC 85 ms 6016 KB
30.txt AC 88 ms 6016 KB
31.txt AC 89 ms 6016 KB
32.txt AC 86 ms 5888 KB
33.txt AC 88 ms 5888 KB
34.txt AC 87 ms 5888 KB
35.txt AC 88 ms 5888 KB
36.txt AC 88 ms 5888 KB
37.txt AC 88 ms 5888 KB
38.txt AC 89 ms 5760 KB
39.txt AC 88 ms 5760 KB
40.txt AC 87 ms 5888 KB
41.txt AC 87 ms 6016 KB
42.txt AC 89 ms 5760 KB
43.txt AC 89 ms 5760 KB
44.txt AC 79 ms 6400 KB
45.txt AC 79 ms 6400 KB
46.txt AC 81 ms 6400 KB
47.txt AC 82 ms 6400 KB
48.txt AC 84 ms 6400 KB
49.txt AC 84 ms 6400 KB
50.txt AC 92 ms 6272 KB
51.txt AC 92 ms 6272 KB
52.txt AC 89 ms 6016 KB
53.txt AC 89 ms 6144 KB
54.txt AC 90 ms 6144 KB
55.txt AC 92 ms 6144 KB
56.txt AC 73 ms 6904 KB
57.txt AC 90 ms 15740 KB
58.txt AC 88 ms 15740 KB
59.txt AC 93 ms 6144 KB
60.txt AC 93 ms 6144 KB
61.txt AC 78 ms 9592 KB
62.txt AC 78 ms 9720 KB
63.txt AC 2 ms 2560 KB
64.txt AC 2 ms 2560 KB
65.txt AC 2 ms 2560 KB
66.txt AC 2 ms 2560 KB
67.txt AC 2 ms 2560 KB
68.txt AC 2 ms 2560 KB
69.txt AC 2 ms 2560 KB
70.txt AC 2 ms 2560 KB
71.txt AC 2 ms 2560 KB
72.txt AC 2 ms 2560 KB
s1.txt AC 2 ms 2560 KB
s2.txt AC 2 ms 2560 KB