D - Inna and Sequence

线段数维护区间有几个没有被删除的数,利用线段树的二分找第几个数在哪里,然后模拟更新就好啦。

  1. #include<bits/stdc++.h>
  2. #define fi first
  3. #define se second
  4. #define mk make_pair
  5. #define pii make_pair
  6. #define ll long long
  7. #define read(x) scanf("%d",&x)
  8. #define sread(x) scanf("%s",x)
  9. #define dread(x) scanf("%lf",&x)
  10. #define lread(x) scanf("%lld",&x)
  11. using namespace std;
  12. const int inf=0x3f3f3f3f;
  13. const int N=2e6+;
  14. int n,m,a[N],dfn;
  15. struct seg_tree
  16. {
  17. struct node
  18. {
  19. int l,r,sum,v;
  20. }a[N<<];
  21. void Build(int l,int r,int rt)
  22. {
  23. a[rt].l=l; a[rt].r=r;
  24. a[rt].sum=a[rt].v=;
  25. if(l==r) return;
  26. int mid=(l+r)>>;
  27. Build(l,mid,rt<<);
  28. Build(mid+,r,rt<<|);
  29. }
  30. void Modify(int pos,int rt,int v)
  31. {
  32. int l=a[rt].l,r=a[rt].r;
  33. if(l==r && l==pos)
  34. {
  35. a[rt].v=v;
  36. a[rt].sum=;
  37. return;
  38. }
  39. int mid=(l+r)>>;
  40. if(pos<=mid) Modify(pos,rt<<,v);
  41. else Modify(pos,rt<<|,v);
  42. a[rt].sum=a[rt<<].sum+a[rt<<|].sum;
  43. }
  44. void Delete(int pos,int rt)
  45. {
  46. int l=a[rt].l, r=a[rt].r;
  47. if(l==r)
  48. {
  49. a[rt].sum=;
  50. a[rt].v=;
  51. return;
  52. }
  53. if(pos<=a[rt<<].sum)
  54. Delete(pos,rt<<);
  55. else
  56. Delete(pos-a[rt<<].sum,rt<<|);
  57. a[rt].sum=a[rt<<].sum+a[rt<<|].sum;
  58. }
  59. void Print(int rt)
  60. {
  61. int l=a[rt].l,r=a[rt].r;
  62. if(l==r)
  63. {
  64. printf("%d",a[rt].v);
  65. return;
  66. }
  67. if(a[rt<<].sum)
  68. Print(rt<<);
  69. if(a[rt<<|].sum)
  70. Print(rt<<|);
  71. }
  72. }seg;
  73. int main()
  74. {
  75. read(n),read(m);
  76. for(int i=;i<m;i++)
  77. read(a[i]);
  78. seg.Build(,n+,);
  79. while(n--)
  80. {
  81. int op; read(op);
  82. if(op==-)
  83. {
  84. for(int i=;i<m;i++)
  85. {
  86. if(seg.a[].sum<a[i]-i)
  87. break;
  88. seg.Delete(a[i]-i,);
  89. }
  90. }
  91. else seg.Modify(++dfn,,op);
  92. }
  93. if(!seg.a[].sum)
  94. puts("Poor stack!");
  95. else
  96. seg.Print();
  97. return ;
  98. }

Codeforces Round #220 (Div. 2) D - Inna and Sequence的更多相关文章

  1. Codeforces Round #229 (Div. 2) C. Inna and Candy Boxes 树状数组s

    C. Inna and Candy Boxes   Inna loves sweets very much. She has n closed present boxes lines up in a ...

  2. Codeforces Round #234 (Div. 2) B. Inna and New Matrix of Candies

    B. Inna and New Matrix of Candies time limit per test 1 second memory limit per test 256 megabytes i ...

  3. Codeforces Round #234 (Div. 2) B. Inna and New Matrix of Candies SET的妙用

    B. Inna and New Matrix of Candies time limit per test 1 second memory limit per test 256 megabytes i ...

  4. Codeforces Round #234 (Div. 2) A. Inna and Choose Options 模拟题

    A. Inna and Choose Options time limit per test 1 second memory limit per test 256 megabytes input st ...

  5. Codeforces Round #220 (Div. 2)

    链接 毒瘤场..... A题:,真码农题,直接干爆,枚举,注意越界问题,wa37的看这组数据1 10 1 5 2 2,应该是no //#pragma comment(linker, "/st ...

  6. Codeforces Round #234 (Div. 2) A. Inna and Choose Options

    A. Inna and Choose Options time limit per test 1 second memory limit per test 256 megabytes input st ...

  7. Codeforces Round #350 (Div. 2) E. Correct Bracket Sequence Editor 模拟

    题目链接: http://codeforces.com/contest/670/problem/E 题解: 用STL的list和stack模拟的,没想到跑的还挺快. 代码: #include<i ...

  8. Codeforces Round #350 (Div. 2) E. Correct Bracket Sequence Editor (链表)

    题目链接:http://codeforces.com/contest/670/problem/E 给你n长度的括号字符,m个操作,光标初始位置是p,'D'操作表示删除当前光标所在的字符对应的括号字符以 ...

  9. Codeforces Round #277 (Div. 2) E. LIS of Sequence DP

    E. LIS of Sequence Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/contest/486/pr ...

随机推荐

  1. 【BZOJ】3282: Tree(lct)

    http://www.lydsy.com/JudgeOnline/problem.php?id=3282 复习了下lct,发现两个问题.. 1:一开始我以为splay那里直接全部rot(x)就好了,然 ...

  2. Ribbon实现Office开始菜单

    Ribbon实现Office开始菜单 界面效果: 首先:在主窗体上拖入popupMenu控件和imageCollection控件 然后选中popupMenu点击三角,再点击Run Designer在弹 ...

  3. checklistboxx 多选取值 和选中

    for (int i = 0; i < cklist.Items.Count; i++) { if (cklist.GetItemChecked(i)) { //修改子菜单的父节点为此菜单的id ...

  4. 列表控件QListWidget

    列表控件可以让我们以列表形式呈现内容,是界面更加有序美观.QListWidget列表控件应当与QListWidgetItem一起使用,后者作为项被添加入列表控件中,也就是说列表控件中的每一项都是一个Q ...

  5. UE4中Bebavior Tree中Delay及其后面代码失效的原因

    具体原因是因为节点的执行过程中,该节点及其父节点的Decorator条件不满足,而节点又受到flow control的影响,导致中途强制结束了Task节点的执行,具体如下. UE4中的Behavior ...

  6. 第16月第24天 find iconv sublime utf-8

    1. find . -type f -exec echo {} \; find src -type f -exec sh -c "iconv -f GB18030 -t UTF8 {} &g ...

  7. windows钩子函数

    一 什么时候用到钩子?(when)Windows操作系统是建立在事件驱动的消息处理机制之上,系统各部分之间的沟通也都是通过消息的相互传递而实现的.通常情况下,应用程序只能处理当前进程的消息,如果需要对 ...

  8. spring cloud 学习

    on going... 微服务势在必行,要开始学点相关的东西了,fighting!!! 注册中心 网关 负载均衡 限流 等等.

  9. kali linux 下搭建git服务器

    参考:http://www.cnblogs.com/dee0912/p/5815267.html https://www.liaoxuefeng.com/wiki/001373951630592960 ...

  10. ARMV8 datasheet学习笔记3:AArch64应用级体系结构

    1.前言 本文主要从应用的角度介绍ARMV8的编程模型和存储模型 2. AArch64应用级编程模型 从应用的角度看到的ARM处理器元素: 可见的元素(寄存器/指令) 说明 可见的寄存器 R0-R30 ...