Educational Codeforces Round 39 (Rated for Div. 2) C. String Transformation
C. String Transformation
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard 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
Copy
aacceeggiikkmmooqqssuuwwyy
output
abcdefghijklmnopqrstuvwxyz
input
Copy
thereisnoanswer
output
-1
제목: 문자열을 주면 임의의 위치의 문자에 대해'막법'을 활용하여 이 문자를 아스크 코드 +1의 문자로 바꿀 수 있다. 임의의 위치의 문자는'막법'을 여러 번 사용할 수 있다.'막법'은 어릴 때부터 크게 바뀔 수 있다. 그리고 하나의 서열이 a-z로 나타날 수 있는지 판단한다.
문제풀이: 그때 썼을 때 카드 제목이 10년 동안 끊겼어요.이'막법'의 구체적인 효과를 줄곧 알지 못했다.'막법'의 효과를 알고 난 후. 먼저 표시를 정의한다. 표시의 용도는 우리가 지금 a-z의 문자를 찾고 있는 것이다. 우리는 문자열을 처음부터 한쪽으로 쓸면서 이 위치가 표시가 될 수 있는지 판단하기만 하면 된다. 가능하면 표시+1을 하고 계속 뒤로 찾는다. 만약 반복이 끝나기 전에 표시는 z와 같다. 그러면 된다. 그렇지 않으면 안 된다.
구체적인 실현 과정은 코드 주석을 본다.
#include
#include
#include
#include
using namespace std;
int main(){
char s[100005];
cin >> s;
int len = strlen(s);
int flag = 0;
if(len <= 25){ // 25 a-z
cout << "-1" << endl;
return 0;
}
int ans = 97; // 。 97 a 97
int a[26]; // ,
memset(a,0,sizeof(a));
int cur = 0 ;
for(int i = 0 ; i < len ; i ++){ // “ ”
if(cur == 26)
break;
if(s[i] <= ans){
ans++;
a[cur++] = i;
}
}
if(a[25]){
int num = 0;
for(int i = 0 ; i < len ; i ++){
if(i == a[num]){
printf("%c",num+97);
num++;
}
else
printf("%c",s[i]);
}
}
else
cout << "-1" << endl;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.