Linova and Kingdom

Posted xinpingqihe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linova and Kingdom相关的知识,希望对你有一定的参考价值。

Linova and Kingdom

主要是求一个节点的深度和它子节点的个数,然后深度减去子节点个数来保证,如果它后边有工业城市所带来的影响

主要是是用dfs

int dfs(int x,int step){
	vis[1]=1;
	len[x]=step;
	int t=0;
	for(int i=0;i<ve[x].size();i++){
		int v=ve[x][i];
		if(vis[v]==0){
			vis[v]=1;
			t+=dfs(v,step+1);
		}
	}
	ch[x]=t;
	return t+1;
}

 

太菜了,看的别人的题解,就不发AC代码了~-~

以上是关于Linova and Kingdom的主要内容,如果未能解决你的问题,请参考以下文章

Linova and Kingdom(树型-贪心)

CF1336 Linova and Kingdom

Linova and Kingdom CodeForces - 1336A

Linova and Kingdom CodeForces - 1336A

Linova and Kingdom CodeForces - 1336A (思维)

Linova and Kingdom CodeForces - 1336A (思维)