codeforce Lexicographically Maximum Subsequence

只要读懂题意应该就没问题了吧。。找字符串的字典序最大子序,从后往前找比较方便,最后逆序输出

/***********************************************
 * Author: fisty
 * Created Time: 2015/2/4 21:15:20
 * File Name   : 3_D.cpp
 *********************************************** */
#include <iostream>
#include <cstring>
#include <deque>
#include <cmath>
#include <queue>
#include <stack>
#include <list>
#include <map>
#include <set>
#include <string>
#include <vector>
#include <cstdio>
#include <bitset>
#include <algorithm>
using namespace std;
#define Debug(x) cout << #x << " " << x <<endl
#define Memset(x, a) memset(x, a, sizeof(x))
const int INF = 0x3f3f3f3f;
typedef long long LL;
typedef pair<int, int> P;
#define FOR(i, a, b) for(int i = a;i < b; i++)
#define MAX_N 1000100
int main() {
    //freopen("in.txt", "r", stdin);
    //cin.tie(0);
    //ios::sync_with_stdio(false);
    char s[MAX_N];
    char ans[MAX_N];
    while(scanf("%s",s) != EOF){
        char max = 0;
        int len = 0;
        for(int i = strlen(s)-1;i >= 0; i--){
            if(s[i] >= max){
                max = s[i];
                ans[len++] = s[i];
            }
        } 
        for(int i = strlen(ans)-1; i >= 0; i--){
            cout << ans[i];
        }
        cout << endl;
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值