记录编号 | 436659 | 评测结果 | AAAAAAAAAA | ||
---|---|---|---|---|---|
题目名称 | [HEOI 2015] 兔子与樱花 | 最终得分 | 100 | ||
用户昵称 | 是否通过 | 通过 | |||
代码语言 | C++ | 运行时间 | 2.939 s | ||
提交时间 | 2017-08-12 10:41:56 | 内存使用 | 30.86 MiB | ||
#include<bits/stdc++.h> #define MAXN 2000010 namespace IO{ char buf[1<<15],*fs,*ft; inline char gc(){return (fs==ft&&(ft=(fs=buf)+fread(buf,1,1<<15,stdin),fs==ft))?0:*fs++;} inline int qr(){ int x=0,ch=gc(); while(ch<'0'||ch>'9'){ch=gc();} while(ch>='0'&&ch<='9'){x=(x<<1)+(x<<3)+ch-'0';ch=gc();} return x;} }using namespace IO; using namespace std; /***********************************************************************************************/ int c[MAXN],ans=0,n,m; vector<int> g[MAXN]; bool cmp(int x,int y){ return c[x]<c[y]; } void DFS(int now){ for(int i=0;i<(int)g[now].size();i++)DFS(g[now][i]); c[now]+=g[now].size(); sort(g[now].begin(),g[now].end(),cmp); for(int i=0;i<(int)g[now].size();i++){ if(c[g[now][i]]+c[now]-1<=m){ c[now]+=c[g[now][i]]-1; ans++; } else break; } } int main(){ freopen("sakura.in","r",stdin); freopen("sakura.out","w",stdout); int x,y; scanf("%d%d",&n,&m); for(int i=0;i<n;i++)scanf("%d",&c[i]); for(int i=0;i<n;i++){ scanf("%d",&x); for(int j=1;j<=x;j++){ scanf("%d",&y); g[i].push_back(y); } } DFS(0); printf("%d",ans); return 0; }