Educational Codeforces Round 39 (Rated for Div. 2) C. String Transformation

2808 단어
제목 링크: 클릭하여 링크 열기
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;
}

좋은 웹페이지 즐겨찾기