标签:这一 str cst const led lib iostream through amp
本文版权归ljh2000和博客园共有,欢迎转载,但须保留此声明,并给出原文链接,谢谢合作。
10%的数据中,n ≤ 1000, K = 1;
30%的数据中,K = 1;
80%的数据中,每个村庄相邻的村庄数不超过 25;
90%的数据中,每个村庄相邻的村庄数不超过 150;
100%的数据中,3 ≤ n ≤ 100,000, 1 ≤ K ≤ 2。
1 //It is made by ljh2000 2 #include <iostream> 3 #include <cstdlib> 4 #include <cstring> 5 #include <cstdio> 6 #include <cmath> 7 #include <algorithm> 8 #include <ctime> 9 #include <vector> 10 #include <queue> 11 #include <map> 12 #include <set> 13 using namespace std; 14 typedef long long LL; 15 const int inf = (1<<30); 16 const int MAXN = 100011; 17 const int MAXM = 200011; 18 int n,k,ecnt,next[MAXM],to[MAXM],w[MAXM]; 19 int f[MAXN][2],first[MAXN],g[MAXN],p[MAXN]; 20 int ans,root,Ans,Son,Son2; 21 22 inline int getint() 23 { 24 int w=0,q=0; char c=getchar(); 25 while((c<‘0‘ || c>‘9‘) && c!=‘-‘) c=getchar(); if(c==‘-‘) q=1,c=getchar(); 26 while (c>=‘0‘ && c<=‘9‘) w=w*10+c-‘0‘, c=getchar(); return q ? -w : w; 27 } 28 inline void link(int x,int y){ next[++ecnt]=first[x]; first[x]=ecnt; to[ecnt]=y; w[ecnt]=1; } 29 inline void dfs(int x,int fa){ 30 int now,son=0,son2=0; 31 for(int i=first[x];i;i=next[i]) { 32 int v=to[i]; if(v==fa) continue; dfs(v,x); now=f[v][0]+w[i]; 33 if(now>f[x][0]) son=g[x],son2=p[x],f[x][1]=f[x][0],f[x][0]=now,g[x]=v,p[x]=i; else if(now>f[x][1]) f[x][1]=now,son=v,son2=i; 34 } 35 if(f[x][0]+f[x][1]>ans) { ans=f[x][0]+f[x][1]; root=x; Son=son; Son2=son2; } 36 } 37 38 inline void work(){ 39 n=getint(); k=getint(); int x,y; for(int i=1;i<n;i++) { x=getint(); y=getint(); link(x,y); link(y,x); } 40 dfs(1,0); Ans=2*(n-1)-ans+1; if(k==1) { printf("%d",Ans); return ; } 41 if(f[root][1]>0) { x=Son; w[Son2]=-1; while(g[x]) { w[p[x]]=-1; x=g[x]; } } 42 x=root; while(g[x]) w[p[x]]=-1,x=g[x]; ans=0; memset(f,0,sizeof(f)); 43 dfs(1,0); Ans-=ans-1; printf("%d",Ans); 44 } 45 46 int main() 47 { 48 work(); 49 return 0; 50 }
标签:这一 str cst const led lib iostream through amp
原文地址:http://www.cnblogs.com/ljh2000-jump/p/6012090.html