A10662 | Complete the Word
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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?
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?
输入格式
The first and only line of the input contains a single string $s$ ( $1<=|s|<=50000$ ), 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.
输出格式
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.
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.
输入输出样例
输入 #1
ABC??FGHIJK???OPQR?TUVWXY?
输出 #1
ABCDEFGHIJKLMNOPQRZTUVWXYS
输入 #2
WELCOMETOCODEFORCESROUNDTHREEHUNDREDANDSEVENTYTWO
输出 #2
-1
输入 #3
??????????????????????????
输出 #3
MNBVCXZLKJHGFDSAQPWOEIRUYT
输入 #4
AABCDEFGHIJKLMNOPQRSTUVW??M
输出 #4
-1
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.
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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted