「BZOJ2815」[ZJOI2012] 灾难
小强和阿米巴0.0
fhq神犇的题= =
http://fanhq666.blog.163.com/blog/static/8194342620124274154996/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
#include<map> #include<cmath> #include<queue> #include<vector> #include<stack> #include<cstdlib> #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> #define ll long long #define inf 1000000000 using namespace std; int read() { int x=0,f=1;char ch=getchar(); while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();} while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();} return x*f; } int bin[20]; int n,cnt; struct edge{ int to,next; }e[2000005]; vector<int> st,q; struct G{ int last[100005],deep[100005],in[100005],size[100005]; int fa[100005][20]; void insert(int u,int v) { e[++cnt].to=v;e[cnt].next=last[u];last[u]=cnt; in[v]++; } void dfs(int x) { for(int i=last[x];i;i=e[i].next) if(e[i].to!=fa[x][0]) { fa[e[i].to][0]=x; dfs(e[i].to); size[x]+=size[e[i].to]+1; } } int lca(int x,int y) { if(x==-1)return y; if(deep[x]<deep[y])swap(x,y); int t=deep[x]-deep[y]; for(int i=0;bin[i]<=t;i++) if(t&bin[i])x=fa[x][i]; for(int i=19;i>=0;i--) if(fa[x][i]!=fa[y][i]) x=fa[x][i],y=fa[y][i]; if(x==y)return x; return fa[x][0]; } void tp() { for(int i=1;i<=n;i++) if(!in[i])st.push_back(i); while(!st.empty()) { int now=st.back(); st.pop_back(); q.push_back(now); for(int i=last[now];i;i=e[i].next) { in[e[i].to]--; if(!in[e[i].to]) st.push_back(e[i].to); } } } void pre(int x) { for(int i=1;bin[i]<=deep[x];i++) fa[x][i]=fa[fa[x][i-1]][i-1]; } }G1,G2; void build_tree() { for(int i=q.size()-1;i>=0;i--) { int now=q[i],Fa=-1; for(int j=G1.last[now];j;j=e[j].next) Fa=G2.lca(Fa,e[j].to); if(Fa==-1)Fa=0; G2.insert(Fa,now); G2.deep[now]=G2.deep[Fa]+1; G2.fa[now][0]=Fa; G2.pre(now); } } int main() { bin[0]=1; for(int i=1;i<20;i++)bin[i]=bin[i-1]<<1; n=read(); for(int i=1;i<=n;i++) { int x=read(); while(x) { G1.insert(i,x); x=read(); } } G1.tp(); build_tree(); G2.dfs(0); for(int i=1;i<=n;i++) printf("%d\n",G2.size[i]); return 0; } |
看不懂啊
马上复赛了前来膜拜黄学长