您好,欢迎来到爱够旅游网。
搜索
您的当前位置:首页【codeforces 998B】B. A Tide of Riverscape

【codeforces 998B】B. A Tide of Riverscape

来源:爱够旅游网

B. A Tide of Riverscape
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
Walking along a riverside, Mino silently takes a note of something.

"Time," Mino thinks aloud.

"What?"

"Time and tide wait for no man," explains Mino. "My name, taken from the river, always reminds me of this."

"And what are you recording?"

"You see it, tide. Everything has its own period, and I think I've figured out this one," says Mino with confidence.

Doubtfully, Kanno peeks at Mino's records.

The records are expressed as a string ss of characters '0', '1' and '.', where '0' denotes a low tide, '1' denotes a high tide, and '.' denotes an unknown one (either high or low).

You are to help Mino determine whether it's possible that after replacing each '.' independently with '0' or '1', a given integer pp is not a period of the resulting string. In case the answer is yes, please also show such a replacement to Mino.

In this problem, a positive integer pp is considered a period of string ss, if for all 1i|s|p1≤i≤|s|−p, the ii-th and (i+p)(i+p)-th characters of ss are the same. Here |s||s| is the length of ss.

Input

The first line contains two space-separated integers nn and pp (1pn20001≤p≤n≤2000) — the length of the given string and the supposed period, respectively.

The second line contains a string ss of nn characters — Mino's records. ss only contains characters '0', '1' and '.', and contains at least one '.' character.

Output

Output one line — if it's possible that pp is not a period of the resulting string, output any one of such strings; otherwise output "No" (without quotes, you can print letters in any case (upper or lower)).

Examples
input
Copy
10 7
1.0.1.0.1.
output
Copy
1000100010
input
Copy
10 6
1.0.1.1000
output
Copy
1001101000
input
Copy
10 9
1........1
output
Copy
No
Note

In the first example, 77 is not a period of the resulting string because the 11-st and 88-th characters of it are different.

In the second example, 66 is not a period of the resulting string because the 44-th and 1010-th characters of it are different.

In the third example, 99 is always a period because the only constraint that the first and last characters are the same is already satisfied.

Note that there are multiple acceptable answers for the first two examples, you can print any of them.

比赛时因为少判断了一个条件,结果被Hack了,不应该啊。。。

#include<bits/stdc++.h>
using namespace std;
#define MAXN 100050
char c[MAXN];
int main()
{
	int n,t;
	cin>>n>>t;
	for(int i=0;i<n;i++) cin>>c[i];
	int flag=0;
	for(int i=0;i<t;i++)
	{
		for(int j=i+t;j<n;j+=t)
		{
			if(c[i]=='1'&&c[j]=='.')
			{
				flag=1;
				c[j]='0';
			}
			else if(c[i]=='0'&&c[j]=='.')
			{
				flag=1;
				c[j]='1';
			}
			else if(c[i]=='.'&&c[j]=='1')
			{
				flag=1;
				c[i]='0';
			}
			else if(c[i]=='.'&&c[j]=='0')
			{
				flag=1;
				c[i]='1';
			}
			else if(c[i]=='.'&&c[j]=='.')
			{
				flag=1;
				c[i]='0';
				c[j]='1';
			}
			else if(c[i]=='0'&&c[j]=='1')
			{
				flag=1;
			}
			else if(c[i]=='1'&&c[j]=='0')
			{
				flag=1;
			}
		}
	}
	if(flag) 
	{
		for(int i=0;i<n;i++)
		{
			if(c[i]=='.')
			{
				c[i]='1';
			}
		}
		for(int i=0;i<n;i++) cout<<c[i];
		cout<<endl;
	}
	else cout<<"No"<<endl;
	return 0;
}

因篇幅问题不能全部显示,请点此查看更多更全内容

Copyright © 2019- igbc.cn 版权所有 湘ICP备2023023988号-5

违法及侵权请联系:TEL:199 1889 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务