首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >【CodeForces】716B - Complete the Word(暴力)

【CodeForces】716B - Complete the Word(暴力)

作者头像
FishWang
发布2025-08-26 20:42:59
发布2025-08-26 20:42:59
7700
代码可运行
举报
运行总次数:0
代码可运行

点击打开题目

B. Complete the Word

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard 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

代码语言:javascript
代码运行次数:0
运行
复制
ABC??FGHIJK???OPQR?TUVWXY?

output

代码语言:javascript
代码运行次数:0
运行
复制
ABCDEFGHIJKLMNOPQRZTUVWXYS

input

代码语言:javascript
代码运行次数:0
运行
复制
WELCOMETOCODEFORCESROUNDTHREEHUNDREDANDSEVENTYTWO

output

代码语言:javascript
代码运行次数:0
运行
复制
-1

input

代码语言:javascript
代码运行次数:0
运行
复制
??????????????????????????

output

代码语言:javascript
代码运行次数:0
运行
复制
MNBVCXZLKJHGFDSAQPWOEIRUYT

input

代码语言:javascript
代码运行次数:0
运行
复制
AABCDEFGHIJKLMNOPQRSTUVW??M

output

代码语言:javascript
代码运行次数:0
运行
复制
-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个字母。

当然如果总长度小于26肯定输出-1。

最后处理好?的填充处理就行了。

题目要求的是输出全部字符串!不是满足条件的子串!!

代码如下:

代码语言:javascript
代码运行次数:0
运行
复制
#include <cstdio>
#include <stack>
#include <queue>
#include <cmath>
#include <vector>
#include <cstring>
#include <algorithm>
using namespace std;
#define CLR(a,b) memset(a,b,sizeof(a))
#define INF 0x3f3f3f3f
#define LL long long
char str[100011];
int l;
int ant[30];
bool flag;
int main()
{
	scanf ("%s",str);
	l = strlen(str);
	if (l < 26)
	{
		printf ("-1\n");
		return 0;
	}
	bool ans = false;
	for (int i = 0 ; i < l-25 ; i++)
	{
		CLR(ant,0);
		flag = true;
		for (int j = i ; j < i + 26 ; j++)
		{
			if (str[j] == '?')
				continue;
			ant[str[j]-'A']++;
			if (ant[str[j]-'A'] >= 2)
			{
				flag = false;
				break;
			}
		}
		if (flag)
		{
			ans = true;
			for (int j = i ; j < i + 26 ; j++)
			{
				if (str[j] == '?')
				{
					for (int k = 0 ; k < 26 ; k++)
					{
						if (ant[k] == 0)
						{
							ant[k] = 1;
							str[j] = 'A' + k;
							break;
						}
					}
				}
			}
			if (ans)
				break;
		}
	}
	if (ans)
	{
		for (int i = 0 ; i < l ; i++)
			if (str[i] == '?')
				str[i] = 'A';
		printf ("%s\n",str);
	}
	else
		puts("-1");
	return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2025-08-26,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档