BZOJ [Cqoi2017] 小Q的棋盤
阿新 • • 發佈:2018-02-21
amp pac con 深度 body for ont light ted
題解:枚舉最後在哪裏停止,然後剩下的步數/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的棋盤