Codeforces 716B B. Complete the Word

来源:互联网 发布:托马斯游戏小游戏软件 编辑:程序博客网 时间:2024/06/04 18:38

B. Complete the Word
time limit per test2 seconds
memory limit per test256 megabytes
inputstandard input
outputstandard output
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.

Examples
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.

l = 'ABCDEFGHIJKLMNOPQRSTUVWXYZ's = raw_input()if len(s) < 26:    print -1    exit()found = Falsefor start_index in range(0,len(s)-26+1):    if found:        exit()    m = dict()    is_ok = True    for item in l:        m[item] = 0    for i in range(start_index, start_index+26):        if '?' != s[i]:            if m[s[i]] >= 1:                is_ok = False            m[s[i]] += 1    if is_ok:        left = []        for item in l:            if 0 == m[item]:                left.append(item)        index = 0        ans = ''        for i in range(0, start_index):            if '?' == s[i]:                ans += 'A'            else:                ans += s[i]        for i in range(start_index, start_index+26):            if '?' == s[i]:                ans += left[index]                index += 1            else:                ans += s[i]        for i in range(start_index+26, len(s)):            if '?' == s[i]:                ans += 'A'            else:                ans += s[i]        print ans        found = Trueif not found:    print '-1'
0 0
原创粉丝点击