BZOJ [Cqoi2017] 小Q的棋盘

Posted ws_zzy

tags:

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

题解:枚举最后在哪里停止,然后剩下的步数/2

也就是找最大深度

枚举终止位置算是一种思路吧

#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
const int maxn=10009;

int n,m;
int maxdep;

int cntedge;
int head[maxn];
int to[maxn<<1],nex[maxn<<1];
void Addedge(int x,int y){
	nex[++cntedge]=head[x];
	to[cntedge]=y;
	head[x]=cntedge;
}

void Dfs(int x,int fa,int dep){
	maxdep=max(maxdep,dep);
	for(int i=head[x];i;i=nex[i]){
		if(to[i]==fa)continue;
		Dfs(to[i],x,dep+1);
	}
}

int main(){
	scanf("%d%d",&n,&m);
	for(int i=1;i<=n-1;++i){
		int x,y;
		scanf("%d%d",&x,&y);
		Addedge(x+1,y+1);
		Addedge(y+1,x+1);
	}
	
	Dfs(1,1,0);
	
	if(m<=maxdep)printf("%d\n",m+1);
	else printf("%d\n",min(n,(m-maxdep)/2+maxdep+1));
	return 0;
}

  

以上是关于BZOJ [Cqoi2017] 小Q的棋盘的主要内容,如果未能解决你的问题,请参考以下文章

BZOJ 4813: [Cqoi2017]小Q的棋盘

P3698 [CQOI2017]小Q的棋盘

[CQOI2017]小Q的棋盘

解题:CQOI 2017 小Q的棋盘

bzoj4814: [Cqoi2017]小Q的草稿

[bzoj4815] [洛谷P3700] [Cqoi2017] 小Q的表格