Codeforces 946C String Transformation(贪心)

题目链接:String Transformation

题意

给定一个字符串 s s ,可以将这个字符串的任意一个字符变成它的下一个字符(按 ASCII 顺序),问给定的字符串能否通过任意次这种操作成为一个含有子字符序列 abcz a b c ⋯ z 的字符串。

输入

输出为一个只包含小写字符的字符串 s (1|s|105) s   ( 1 ≤ | s | ≤ 10 5 )

输出

如果无法成为满足题意的字符串,输出 1 − 1 ,否则输出转化后的字符串,如果有多解输出任意一个。

样例

输入
aacceeggiikkmmooqqssuuwwyy
输出
abcdefghijklmnopqrstuvwxyz
输入
thereisnoanswer
输出
-1
题解

用一个 ch c h 来记录当前位置的字符需要变成的子序列 abcz a b c ⋯ z 中的字符,如果当前字符的 ASCII A S C I I 不大于 ch c h ,说明当前字符可以变成 ch c h ,然后将 ch++ c h + + 成为下一个字符,最后判断 ch c h 是否到达 z+1 ′ z ′ + 1

过题代码

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <climits>
#include <cstring>
#include <string>
#include <vector>
#include <list>
#include <queue>
#include <stack>
#include <map>
#include <set>
#include <bitset>
#include <algorithm>
#include <functional>
#include <iomanip>
using namespace std;

#define LL long long
const int maxn = 100000 + 100;
char str[maxn];

int main() {
    #ifdef LOCAL
        freopen("test.txt", "r", stdin);
//    freopen("out.txt", "w", stdout);
    #endif // LOCAL
    ios::sync_with_stdio(false);

    while(scanf("%s", str) != EOF) {
        char ch = 'a';
        for(int i = 0; str[i]; ++i) {
            if(str[i] <= ch) {
                if(ch <= 'z') {
                    str[i] = ch;
                    ++ch;
                }
            }
        }
        if(ch == 'z' + 1) {
            printf("%s\n", str);
        } else {
            printf("-1\n");
        }
    }

    return 0;
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值