CodeForces - 716B Complete the Word(暴力)

ZS the Coder loves to read the dictionary. He thinks that a word is nice if there exists a substring (contiguous segment of letters) of it of length 26 where each letter of English alphabet appears exactly once. In particular, if the string has length strictly less than 26, no such substring exists and thus it is not nice.
Now, ZS the Coder tells you a word, where some of its letters are missing as he forgot them. He wants to determine if it is possible to fill in the missing letters so that the resulting word is nice. If it is possible, he needs you to find an example of such a word as well. Can you help him?
Input

The first and only line of the input contains a single string s (1 ≤ |s| ≤ 50 000), the word that ZS the Coder remembers. Each character of the string is the uppercase letter of English alphabet (‘A’-‘Z’) or is a question mark (‘?’), where the question marks denotes the letters that ZS the Coder can’t remember.
Output

If there is no way to replace all the question marks with uppercase letters such that the resulting word is nice, then print  - 1 in the only line.

Otherwise, print a string which denotes a possible nice word that ZS the Coder learned. This string should match the string from the input, except for the question marks replaced with uppercase English letters.

If there are multiple solutions, you may print any of them.

Example
Input

ABC??FGHIJK???OPQR?TUVWXY?

Output

ABCDEFGHIJKLMNOPQRZTUVWXYS

Input

WELCOMETOCODEFORCESROUNDTHREEHUNDREDANDSEVENTYTWO

Output

-1

Input

??????????????????????????

Output

MNBVCXZLKJHGFDSAQPWOEIRUYT

Input

AABCDEFGHIJKLMNOPQRSTUVW??M

Output

-1

Note

In the first sample case, ABCDEFGHIJKLMNOPQRZTUVWXYS is a valid answer beacuse it contains a substring of length 26 (the whole string in this case) which contains all the letters of the English alphabet exactly once. Note that there are many possible solutions, such as ABCDEFGHIJKLMNOPQRSTUVWXYZ or ABCEDFGHIJKLMNOPQRZTUVWXYS.

In the second sample case, there are no missing letters. In addition, the given string does not have a substring of length 26 that contains all the letters of the alphabet, so the answer is  - 1.

In the third sample case, any string of length 26 that contains all letters of the English alphabet fits as an answer.

我是个笨蛋。。。没注意到是要求连续的子串为26个字母。。。心塞塞。。。暴力还能暴错。。。也就只有我一个人了。。。

#include<cstring>
#include<cstdio>
#include<iostream>
#include<string>
using namespace std;

string s;

int main(){
    int i, j, k, l, a[30];
    bool flag1, flag2;
    cin >> s;
    l = s.length();
    if(l < 26){
        printf("-1\n");
        return 0;
    }
    flag2 = 0;
    for(i = 0; i < l - 25; i++){
        memset(a, 0, sizeof(a));
        flag1 = 1;
        for(j = i; j < i + 26; j++){
            if(s[j] == '?'){
                continue;
            }
            else{
                a[s[j] - 'A']++;
            }
            if(a[s[j] - 'A'] >= 2){
                flag1 = 0;
                break;
            }
        }
        if(flag1){
            flag2 = 1;
            for(j = i; j < i + 26; j++){
                if(s[j] == '?'){
                    for(k = 0; k < 26; k++){
                        if(a[k] == 0){
                            s[j] = 'A' + k;
                            a[k]++;
                            break;
                        }
                    }
                }
            }
            if(flag2){
                break;
            }
        }
    }
    if(flag2){
        for(i = 0; i < l; i++){
            if(s[i] == '?'){
                s[i] = 'A';
            }
        }
        cout << s << endl;
    }
    else{
        cout << "-1" << endl;
    }
    return 0;
}

猜你喜欢

转载自blog.csdn.net/ling_wang/article/details/79851157
今日推荐