记录编号 501411 评测结果 AAAAAAAAAA
题目名称 [HNOI 2010] 弹飞绵羊 最终得分 100
用户昵称 GravatarAntiLeaf 是否通过 通过
代码语言 C++ 运行时间 0.938 s
提交时间 2018-07-21 17:12:20 内存使用 3.36 MiB
显示代码纯文本
  1. #include<bits/stdc++.h>
  2. #define isroot(x) ((x)!=(x)->p->ch[0]&&(x)!=(x)->p->ch[1])
  3. #define dir(x) ((x)==(x)->p->ch[1])
  4. using namespace std;
  5. const int maxn=200005;
  6. struct node{
  7. int size;
  8. node *ch[2],*p;
  9. node():size(1){}
  10. void refresh(){size=ch[0]->size+ch[1]->size+1;}
  11. }null[maxn];
  12. void initalize(node*);
  13. node *access(node*);
  14. void link(node*,node*);
  15. void cut(node*);
  16. void splay(node*);
  17. void rot(node*,int);
  18. int n,m;
  19. int main(){
  20. freopen("bzoj_2002.in","r",stdin);
  21. freopen("bzoj_2002.out","w",stdout);
  22. null->size=0;
  23. scanf("%d",&n);
  24. for(int i=0;i<=n;i++)initalize(null+i);
  25. for(int i=1,x;i<=n;i++){
  26. scanf("%d",&x);
  27. if(i+x<=n)link(null+i,null+i+x);
  28. }
  29. scanf("%d",&m);
  30. while(m--){
  31. int t,x;
  32. scanf("%d%d",&t,&x);
  33. x++;
  34. if(t==1)printf("%d\n",access(null+x)->size);
  35. else{
  36. int d;
  37. scanf("%d",&d);
  38. cut(null+x);
  39. if(x+d<=n)link(null+x,null+x+d);
  40. }
  41. }
  42. return 0;
  43. }
  44. void initalize(node *x){x->ch[0]=x->ch[1]=x->p=null;}
  45. node *access(node *x){
  46. node *y=null;
  47. while(x!=null){
  48. splay(x);
  49. x->ch[1]=y;
  50. (y=x)->refresh();
  51. x=x->p;
  52. }
  53. return y;
  54. }
  55. void link(node *x,node *y){
  56. splay(x);
  57. x->p=y;
  58. }
  59. void cut(node *x){
  60. access(x);
  61. splay(x);
  62. x->ch[0]->p=null;
  63. x->ch[0]=null;
  64. x->refresh();
  65. }
  66. void splay(node *x){
  67. while(!isroot(x)){
  68. if(isroot(x->p)){
  69. rot(x->p,dir(x)^1);
  70. break;
  71. }
  72. if(dir(x)==dir(x->p))rot(x->p->p,dir(x->p)^1);
  73. else rot(x->p,dir(x)^1);
  74. rot(x->p,dir(x)^1);
  75. }
  76. }
  77. void rot(node *x,int d){
  78. node *y=x->ch[d^1];
  79. y->p=x->p;
  80. if(!isroot(x))x->p->ch[dir(x)]=y;
  81. if((x->ch[d^1]=y->ch[d])!=null)y->ch[d]->p=x;
  82. (y->ch[d]=x)->p=y;
  83. x->refresh();
  84. y->refresh();
  85. }