/ Randle /

记录详情

Runtime Error


  
# 状态 耗时 内存占用
#1 Wrong Answer 23ms 39.301 MiB
#2 Wrong Answer 15ms 41.305 MiB
#3 Wrong Answer 19ms 38.816 MiB
#4 Runtime Error 148ms 61.43 MiB
#5 Runtime Error 156ms 59.422 MiB
#6 Runtime Error 174ms 67.43 MiB
#7 Runtime Error 184ms 63.676 MiB
#8 Runtime Error 192ms 69.43 MiB
#9 Runtime Error 182ms 67.441 MiB
#10 Runtime Error 189ms 62.555 MiB

代码

#include<bits/stdc++.h>
const int maxn=2e6+1;
inline const void read(int &a)
{
	char c=getchar();a=0;
	while(c<'0'||c>'9')c=getchar();
	while(c>='0'&&c<='9')
	{
		a=(a<<1)+(a<<3)+c-'0';
		c=getchar();
	}
}
int n,d=0,kk=1;
int point[maxn],next[maxn],father[maxn],to[maxn],ans[maxn],num[maxn],sum[maxn],deep[maxn];
bool vis[maxn];
inline const void add(int a,int b)
{
	next[++d]=point[a];
	point[a]=d;
	to[d]=b;
}
inline const void dfs1(int p)
{
	vis[p]=true;
	int side=point[p];
	num[p]=1;sum[p]+=deep[p];
	while(side)
	{
		if(!vis[to[side]])
		{
			father[to[side]]=p;
			deep[to[side]]=deep[p]+1;
			dfs1(to[side]);
			num[p]+=num[to[side]];sum[p]+=sum[to[side]];
		}
		side=next[side];
	}
}
inline const void dfs2(int p)
{
	
	if(p!=1)ans[p]=ans[father[p]]-2*num[p]+num[1];
	if(ans[p]>ans[kk])kk=p;
	if(ans[p]==ans[kk]&&p<kk)kk=p;
	vis[p]=true;
	int side=point[p];
	while(side)
	{
		if(!vis[to[side]])dfs2(to[side]);
		side=next[side];
	}
}
int main()
{
	memset(father,0,sizeof(father));
	memset(sum,0,sizeof(sum));
	memset(point,0,sizeof(point));
	memset(ans,0,sizeof(ans));
	read(n);
	int u,v;
	for(int i=1;i<=n-1;i++){read(u);read(v);add(u,v);add(v,u);}
	deep[1]=0;
	memset(vis,false,sizeof(vis));
	dfs1(1);
	memset(vis,false,sizeof(vis));ans[1]=sum[1];
	std::cout<<std::endl;
	dfs2(1);
	std::cout<<kk;
	return  0;
}

信息

递交者
类型
递交
题目
树的深度 T1
题目数据
下载
语言
C++
递交时间
2017-10-11 19:40:11
评测时间
2017-10-11 19:43:11
评测机
分数
0
总耗时
1287ms
峰值内存
69.43 MiB