CF 797C

题意:

给定字符串str,给定两种操作,求这两种操作下能够得到的字典序最小的字符串。

题解:

贪心。

从小到大挑选,只要s中有,就把多余的给t,把要挑选的给u。当然再次之前要检查t的末尾是否小于要挑选的字符,如果是则压入u。本题其实是队列和栈的基本应用问题。

#include<iostream>
#include<stack>
#include<queue>
#include<string>
#include<cstring>
using namespace std;

stack<char> sta1;
stack<char> sta2;
queue<char> que;
string str;
int arr[105];
int brr[105];

int main(){
    memset(arr,0,sizeof(arr));
    memset(brr,0,sizeof(brr));
    cin>>str;
    int len=str.length();
    for(int i=len-1;i>=0;i--){
        sta1.push(str[i]);
        int x=str[i]-'a';
        arr[x]++;
    }
    for(int i=0;i<26;i++){
        char tmp=(char)(i+'a');
        while(!sta2.empty()&&sta2.top()<=tmp){
            char ch=sta2.top();
            int x=ch-'a';
            que.push(ch);
            sta2.pop();
            brr[x]--;
        }
        while(arr[i]){
            char ch='a'+i;
            if(sta1.top()==ch){
                que.push(ch);
                arr[i]--;
                sta1.pop();
            }
            else{
                char pity=sta1.top();
                int x=pity-'a';
                brr[x]++;
                arr[x]--;
                sta2.push(pity);
                sta1.pop();
            }
        }
    }
    while(!sta2.empty()){
        que.push(sta2.top());
        sta2.pop();
    }
    while(!que.empty()){
        cout<<que.front();
        que.pop();
    }
    cout<<endl;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值