bzoj3090: Coci2009 [podjela]
这个范围明显树包的
然而值并不滋磁
想了一会发现可以带一维当前子树用了多少边,搞定当前向上还能送多少
然后发现会有搞不定的情况,要向上传负数
每次都要重新初始化,负数强制要要
#include<cstdio> #include<iostream> #include<cstring> #include<cstdlib> #include<algorithm> #include<cmath> using namespace std; const int maxn=2100; struct node { int x,y,next; }a[maxn*2];int len,last[maxn]; void ins(int x,int y) { len++; a[len].x=x;a[len].y=y; a[len].next=last[x];last[x]=len; } int f[maxn][maxn],c[maxn],li[maxn]; void dfs(int x,int fr) { f[x][0]=c[x]; li[x]=0; for(int k=last[x];k;k=a[k].next) { int y=a[k].y; if(y!=fr) { dfs(y,x); li[x]+=li[y]+1; for(int i=li[x];i>=0;i--) { int d=f[0][0]; for(int j=min(i,li[y]);j>=0;j--) { if(f[x][i-j]!=f[0][0]&&f[y][j]!=f[0][0]&&f[y][j]>=0) d=max(d,f[x][i-j]); if(i!=j&&f[x][i-j-1]!=f[0][0]&&f[y][j]!=f[0][0]) d=max(d,f[x][i-j-1]+f[y][j]); } f[x][i]=d; } } } } int main() { freopen("a.in","r",stdin); freopen("a.out","w",stdout); int n,X; scanf("%d%d",&n,&X); for(int i=1;i<=n;i++) scanf("%d",&c[i]),c[i]=X-c[i]; int x,y; len=1; for(int i=1;i<n;i++) { scanf("%d%d",&x,&y); ins(x,y),ins(y,x); } memset(f,-63,sizeof(f)); dfs(1,0); for(int i=0;i<n;i++) if(f[1][i]>=0){printf("%d\n",i);break;} return 0; }
pain and happy in the cruel world.