第一行一个正整数N,表示冰岛的数量。
第二行N个范围[0, 1000]的整数,为每座岛屿初始的帝企鹅数量。
第三行一个正整数M,表示命令的数量。
接下来M行即命令,为题目描述所示。
对于每个bridge命令与excursion命令,输出一行,为题目描述所示。
1<=N<=30000 |
1<=M<=100000 |
#include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #define N 30003 using namespace std; int n,m; int size[N],key[N],sum[N],ch[N][3],fa[N],top,st[N],rev[N]; int isroot(int x) { return ch[fa[x]][0]!=x&&ch[fa[x]][1]!=x; } int get(int x) { return ch[fa[x]][1]==x; } void pushdown(int x) { if (!x) return; if (rev[x]) { rev[ch[x][0]]^=1; rev[ch[x][1]]^=1; rev[x]=0; swap(ch[x][0],ch[x][1]); } } void update(int x) { if (!x) return; size[x]=size[ch[x][0]]+size[ch[x][1]]+1; sum[x]=sum[ch[x][0]]+sum[ch[x][1]]+key[x]; } void rotate(int x) { int y=fa[x]; int z=fa[y]; int which=get(x); if (!isroot(y)) ch[z][ch[z][1]==y]=x; ch[y][which]=ch[x][which^1]; fa[ch[y][which]]=y; ch[x][which^1]=y; fa[y]=x; fa[x]=z; update(y); update(x); } void splay(int x) { top=0; st[++top]=x; for (int i=x;!isroot(i);i=fa[i]) st[++top]=fa[i]; for (int i=top;i>=1;i--) pushdown(st[i]); while (!isroot(x)) { int y=fa[x]; if (!isroot(y)) rotate(get(y)==get(x)?y:x); rotate(x); } } void access(int x) { int t=0; while(x) { splay(x); ch[x][1]=t; update(x); t=x; x=fa[x]; } } void rever(int x) { access(x); splay(x); rev[x]^=1; } void link(int x,int y) { rever(x); fa[x]=y; splay(x); update(x); } int find(int x) { access(x); splay(x); while (ch[x][0]) x=ch[x][0]; return x; } void change(int x,int y) { key[x]=y; access(x); splay(x); } int main() { freopen("a.in","r",stdin); scanf("%d",&n); for (int i=1;i<=n;i++) scanf("%d",&key[i]); scanf("%d",&m); for (int i=1;i<=m;i++) { char s[20]; int x,y; scanf("%s%d%d",s,&x,&y); if (s[0]=='e') { if (find(x)==find(y)) { rever(x); access(y); splay(y); printf("%d\n",sum[y]); } else printf("impossible\n"); } else if (s[0]=='b') { if (find(x)==find(y)) printf("no\n"); else link(x,y),printf("yes\n"); } else change(x,y); } }