codeforces edu round 39 C

C. String Transformation
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
You are given a string s consisting of |s| small english letters.

In one move you can replace any character of this string to the next character in alphabetical order (a will be replaced with b, s will be replaced with t, etc.). You cannot replace letter z with any other letter.

Your target is to make some number of moves (not necessary minimal) to get string abcdefghijklmnopqrstuvwxyz (english alphabet) as a subsequence. Subsequence of the string is the string that is obtained by deleting characters at some positions. You need to print the string that will be obtained from the given string and will be contain english alphabet as a subsequence or say that it is impossible.

Input
The only one line of the input consisting of the string s consisting of |s| (1 ≤ |s| ≤ 105) small english letters.

Output
If you can get a string that can be obtained from the given string and will contain english alphabet as a subsequence, print it. Otherwise print «-1» (without quotes).
Examples
input
aacceeggiikkmmooqqssuuwwyy
output
abcdefghijklmnopqrstuvwxyz
input
thereisnoanswer
output
-1
题很简单,但是很多人应该是误解了题意所以错了…
这题首先定义一个tmp=a,然后后面每匹配到一个<=tmp的元素就把这个元素转化成tmp,最后输出字符串即可,代码如下

#include<iostream>
#include<cmath>
#define ll long long
using namespace std;
int main()
{
	
	string s;
	cin>>s;
	int len = s.length();
	char tmp = 'a';
	int cnt = 0;
	int f = 0;
	for(int i = 0;i<len;i++)
	{
		if(s[i]<=tmp)
		{
			s[i]=tmp;
			tmp++;
			cnt++;
		}
		if(cnt == 26)
		{
			f = 1;
			break;
		}
	}
	if(f)cout<<s<<endl;
	else cout<<-1<<endl;
	return 0;
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值