Codeforces Round #220 (Div. 2) D - Inna and Sequence
线段数维护区间有几个没有被删除的数,利用线段树的二分找第几个数在哪里,然后模拟更新就好啦。
- #include<bits/stdc++.h>
- #define fi first
- #define se second
- #define mk make_pair
- #define pii make_pair
- #define ll long long
- #define read(x) scanf("%d",&x)
- #define sread(x) scanf("%s",x)
- #define dread(x) scanf("%lf",&x)
- #define lread(x) scanf("%lld",&x)
- using namespace std;
- const int inf=0x3f3f3f3f;
- const int N=2e6+;
- int n,m,a[N],dfn;
- struct seg_tree
- {
- struct node
- {
- int l,r,sum,v;
- }a[N<<];
- void Build(int l,int r,int rt)
- {
- a[rt].l=l; a[rt].r=r;
- a[rt].sum=a[rt].v=;
- if(l==r) return;
- int mid=(l+r)>>;
- Build(l,mid,rt<<);
- Build(mid+,r,rt<<|);
- }
- void Modify(int pos,int rt,int v)
- {
- int l=a[rt].l,r=a[rt].r;
- if(l==r && l==pos)
- {
- a[rt].v=v;
- a[rt].sum=;
- return;
- }
- int mid=(l+r)>>;
- if(pos<=mid) Modify(pos,rt<<,v);
- else Modify(pos,rt<<|,v);
- a[rt].sum=a[rt<<].sum+a[rt<<|].sum;
- }
- void Delete(int pos,int rt)
- {
- int l=a[rt].l, r=a[rt].r;
- if(l==r)
- {
- a[rt].sum=;
- a[rt].v=;
- return;
- }
- if(pos<=a[rt<<].sum)
- Delete(pos,rt<<);
- else
- Delete(pos-a[rt<<].sum,rt<<|);
- a[rt].sum=a[rt<<].sum+a[rt<<|].sum;
- }
- void Print(int rt)
- {
- int l=a[rt].l,r=a[rt].r;
- if(l==r)
- {
- printf("%d",a[rt].v);
- return;
- }
- if(a[rt<<].sum)
- Print(rt<<);
- if(a[rt<<|].sum)
- Print(rt<<|);
- }
- }seg;
- int main()
- {
- read(n),read(m);
- for(int i=;i<m;i++)
- read(a[i]);
- seg.Build(,n+,);
- while(n--)
- {
- int op; read(op);
- if(op==-)
- {
- for(int i=;i<m;i++)
- {
- if(seg.a[].sum<a[i]-i)
- break;
- seg.Delete(a[i]-i,);
- }
- }
- else seg.Modify(++dfn,,op);
- }
- if(!seg.a[].sum)
- puts("Poor stack!");
- else
- seg.Print();
- return ;
- }
Codeforces Round #220 (Div. 2) D - Inna and Sequence的更多相关文章
- 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 ...
- 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 ...
- 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 ...
- 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 ...
- Codeforces Round #220 (Div. 2)
链接 毒瘤场..... A题:,真码农题,直接干爆,枚举,注意越界问题,wa37的看这组数据1 10 1 5 2 2,应该是no //#pragma comment(linker, "/st ...
- 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 ...
- Codeforces Round #350 (Div. 2) E. Correct Bracket Sequence Editor 模拟
题目链接: http://codeforces.com/contest/670/problem/E 题解: 用STL的list和stack模拟的,没想到跑的还挺快. 代码: #include<i ...
- Codeforces Round #350 (Div. 2) E. Correct Bracket Sequence Editor (链表)
题目链接:http://codeforces.com/contest/670/problem/E 给你n长度的括号字符,m个操作,光标初始位置是p,'D'操作表示删除当前光标所在的字符对应的括号字符以 ...
- 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 ...
随机推荐
- 【BZOJ】3282: Tree(lct)
http://www.lydsy.com/JudgeOnline/problem.php?id=3282 复习了下lct,发现两个问题.. 1:一开始我以为splay那里直接全部rot(x)就好了,然 ...
- Ribbon实现Office开始菜单
Ribbon实现Office开始菜单 界面效果: 首先:在主窗体上拖入popupMenu控件和imageCollection控件 然后选中popupMenu点击三角,再点击Run Designer在弹 ...
- checklistboxx 多选取值 和选中
for (int i = 0; i < cklist.Items.Count; i++) { if (cklist.GetItemChecked(i)) { //修改子菜单的父节点为此菜单的id ...
- 列表控件QListWidget
列表控件可以让我们以列表形式呈现内容,是界面更加有序美观.QListWidget列表控件应当与QListWidgetItem一起使用,后者作为项被添加入列表控件中,也就是说列表控件中的每一项都是一个Q ...
- UE4中Bebavior Tree中Delay及其后面代码失效的原因
具体原因是因为节点的执行过程中,该节点及其父节点的Decorator条件不满足,而节点又受到flow control的影响,导致中途强制结束了Task节点的执行,具体如下. UE4中的Behavior ...
- 第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 ...
- windows钩子函数
一 什么时候用到钩子?(when)Windows操作系统是建立在事件驱动的消息处理机制之上,系统各部分之间的沟通也都是通过消息的相互传递而实现的.通常情况下,应用程序只能处理当前进程的消息,如果需要对 ...
- spring cloud 学习
on going... 微服务势在必行,要开始学点相关的东西了,fighting!!! 注册中心 网关 负载均衡 限流 等等.
- kali linux 下搭建git服务器
参考:http://www.cnblogs.com/dee0912/p/5815267.html https://www.liaoxuefeng.com/wiki/001373951630592960 ...
- ARMV8 datasheet学习笔记3:AArch64应用级体系结构
1.前言 本文主要从应用的角度介绍ARMV8的编程模型和存储模型 2. AArch64应用级编程模型 从应用的角度看到的ARM处理器元素: 可见的元素(寄存器/指令) 说明 可见的寄存器 R0-R30 ...