codeforces 374D

本文介绍了一个关于序列操作的游戏问题。Dima选择了一系列整数,他与Inna通过添加0或1到序列尾部进行游戏,并且Dima可以通过敲击桌子使序列中特定位置的元素消失。文章提供了解决这一问题的算法实现。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

D. Inna and Sequence
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Dima's spent much time thinking what present to give to Inna and gave her an empty sequence w. Now they want to fill sequence w with numbers zero and one. For that, they decided to play an amusing game.

Before the game begins, Dima chooses m integers a1, a2, ..., am (1 ≤ a1 < a2 < ... < am). Then Inna and Dima start playing, that is, adding numbers to sequence w. Each new number they choose is added to the end of the sequence. At some moments of time Dima feels that the game is going to end too soon (and he wants to play with Inna as long as possible), so he hits a table hard with his fist. At that the a1-th, a2-th, a3-th, ...ak-th numbers from the beginning simultaneously fall out of the sequence (the sequence gets k numbers less). Here k is such maximum number that value ak doesn't exceed the current length of the sequence. If number a1 is larger than the current length of w, then nothing falls out of the sequence.

You are given the chronological sequence of events in the game. Each event is either adding a number to the end of sequence w or Dima's hit on the table. Calculate the sequence w after all these events happen.

Input

The first line of the input contains two integers n and m (1 ≤ n, m ≤ 106) showing how many events took place and how many numbers Dima chose.

The next line contains m distinct integers ai (1 ≤ ai ≤ 106) sorted in the increasing order.

Next n lines describe the events in the chronological order. Each line contains a single integer: -1, 0 or 1. Number -1 means that Dima hits the table. Number 0 means that Inna and Dima add number 0 to the end of the sequence. Number 1 means that Inna and Dima add number 1 to the end of the sequence.

Output

In a single line print a sequence of numbers 0 and 1 — the elements of the sequence after all events happen. Print the elements of the sequence in the order from the beginning to the end of the sequence.

If after all events the sequence ends up empty, print "Poor stack!".

Sample test(s)
input
10 3
1 3 6
-1
1
1
0
0
-1
0
1
-1
1
output
011
input
2 1
1
1
-1
output
Poor stack!
<pre name="code" class="cpp">//#pragma comment(linker, "/STACK:1024000000,1024000000")
#include<cstdio>
#include<cmath>
#include<stdlib.h>
#include<map>
#include<set>
#include<time.h>
#include<vector>
#include<queue>
#include<string>
#include<string.h>
#include<iostream>
#include<algorithm>
using namespace std;
#define eps 1e-8
#define PI acos(-1.0)
#define INF 0x3f3f3f3f
#define LL long long
#define max(a,b) ((a)>(b)?(a):(b))
#define min(a,b) ((a)<(b)?(a):(b))
typedef pair<int , int> pii;

#define maxn 1000000 + 10

int pos[maxn];
int a[maxn];
int n, m;

inline int lowbit(int x)
{
    return x & (-x);
}
void modify(int x,int add)//一维
{
    while(x<=n)
    {
        a[x]+=add;
        x+=lowbit(x);
    }
}
int get_sum(int x)
{
    int ret=0;
    while(x > 0)
    {
        ret+=a[x];
        x-=lowbit(x);
    }
    return ret;
}

int b[maxn];
int tmp[maxn];


int main()
{
    while(~scanf("%d%d", &n, &m))
    {
        for(int i = 0; i < m; i++)
            scanf("%d", pos + i);

        memset(a, 0, sizeof a);
        int cnt = 0;
        for(int i = 0; i < n; i++)
        {
            int t;
            scanf("%d", &t);
            if(t < 0)
            {
                int num = 0;
                for(int i = 0; i < m; i++)
                {
                    int l = 0, r = cnt;
                    if(get_sum(r) < pos[i]) break;
                    while(l + 1 < r)
                    {
                        int mid = (l + r) >> 1;
                        if(get_sum(mid) >= pos[i])  r = mid;
                        else l = mid;
                    }
                    tmp[++num] = r;
                }
                for(int i = 1; i <= num; i++)  modify(tmp[i], -1);
            }
            else
            {
                b[++cnt] = t;
                modify(cnt, 1);
            }
        }
        int flag = 0;
        for(int i = 1; i <= cnt; i++)
        if(get_sum(i) - get_sum(i-1) == 1)
        {
            flag = 1;
            printf("%d", b[i]);
        }
        if(!flag)
        printf("Poor stack!");
        printf("\n");
    }
    return 0;
}






/*

10 3
1 3 6
-1
1
1
0
0
-1
0
1
-1
1


5 3
1 2 3
1 1 1
-1
1

*/



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值