Codeforces 911E - Stack Sorting

Posted Wisdom+.+

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces 911E - Stack Sorting相关的知识,希望对你有一定的参考价值。

911E - Stack Sorting

思路:

用栈来模拟,能pop就pop,记下一个需要pop的数为temp,那么如果栈非空,栈顶肯定大于temp,那么加入栈 栈顶值-1 到 temp 的值,否则加入栈 n 到 1 的值,如果需要加入的数之前已经出现过,答案则不存在。

代码:

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pb push_back
#define meme(a,b) memset(a,b,sizeof(a))

const int N=2e5+5;
bool vis[N];
int a[N];
stack<int>s;
int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n,k;
    cin>>n>>k;
    int temp=1;
    for(int i=1;i<=k;i++){
        cin>>a[i];
        vis[a[i]]=true;
        s.push(a[i]);
        while(s.size()&&s.top()==temp){
            s.pop();
            temp++;
        }
    }
    while(s.size()&&s.top()>temp||n+1>temp){
        int t;
        if(s.size())t=s.top();
        else t=n+1;
        for(int i=t-1;i>=temp;i--){
            if(vis[i]){
                cout<<-1<<endl;
                return 0;
            }
            else s.push(i),a[++k]=i,vis[i]=true;
        }
        while(s.size()&&s.top()==temp){
            s.pop();
            temp++;
        }
    }
    if(s.size())cout<<-1<<endl;
    else for(int i=1;i<=n;i++)cout<<a[i]<< ;
    cout<<endl;
    return 0;
}

 

以上是关于Codeforces 911E - Stack Sorting的主要内容,如果未能解决你的问题,请参考以下文章

CodeForces 78D Archer's Shot

codeforces 559a//Gerald's Hexagon// Codeforces Round #313(Div. 1)

CodeForces 742A Arpa’s hard exam and Mehrdad’s naive cheat

CodeForces 767D Cartons of milk

CodeForces 742B Arpa’s obvious problem and Mehrdad’s terrible solution (暴力枚举)

Codeforces 1159E 拓扑排序