博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CF989B A Tide of Riverscape 思维 第七题
阅读量:5898 次
发布时间:2019-06-19

本文共 3584 字,大约阅读时间需要 11 分钟。

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

 

 啊啊啊啊啊啊,简直了,佩服我自己,一个等于符号写成赋值符号,调半天bug

题意:给你n个字符串,问你每隔k个是否右不相等的,没有输出"No",有输出一个符合不相等的(注意‘.'可以是0或者1,所以输出的时候'.'是会根据前后的数字发生变化的)

#include #include 
#include
#include
#include
#include
#include
#include
#include
#include
#define debug(a) cout << #a << " " << a << endlusing namespace std;const int maxn = 1e6 + 10;const int mod = 1e9 + 7;typedef long long ll;int main(){ std::ios::sync_with_stdio(false); ll n, k; while( cin >> n >> k ) { string s; cin >> s; ll num; bool flag = false; for( ll i = 0; i < s.length(); i ++ ) { if( i + k < s.length() ) { if( s[i] != s[i+k] || ( s[i] == s[i+k] && s[i] == '.' ) ) { if( s[i] == s[i+k] ) { s[i] = '0', s[i+k] = '1'; } else { if( s[i] == '0' ) { s[i+k] = '1'; } else if( s[i] == '1' ) { s[i+k] = '0'; } else { if( s[i+k] == '0' ) { //这里等于号写成了赋值符号,调了半天bug,吐血ing s[i] = '1'; } else { s[i] = '0'; } } } flag = true; break; } } } if( flag ) { for( ll i = 0; i < s.length(); i ++ ) { if( s[i] == '.' ) { cout << "0"; } else { cout << s[i]; } } } else { cout << "No"; } cout << endl; } return 0;}

 

转载于:https://www.cnblogs.com/l609929321/p/9215338.html

你可能感兴趣的文章
SpringBoot集成redis缓存
查看>>
sql经典语句
查看>>
使用ffmpeg实现对h264视频解码 -- (实现了一个易于使用的c++封装库)
查看>>
第4周作业-面向对象设计与继承
查看>>
机器学习的原理
查看>>
flink watermark介绍
查看>>
[Flink原理介绍第四篇】:Flink的Checkpoint和Savepoint介绍
查看>>
mybatis学习之一 开发环境配置和接口编程
查看>>
SqlDataAdapter DataSet DataTable 详解
查看>>
Android Xutils 框架
查看>>
C#基础知识整理 基础知识(21) 委托(二)
查看>>
Android应用程序键盘(Keyboard)消息处理机制分析(16)
查看>>
Sysbench 0.5版安装配置
查看>>
统一沟通-技巧-11-Lync-联盟-无法-音频-远程桌面-传文件
查看>>
书摘—你不可不知的心理策略
查看>>
【博客话题】毕业——开始人生的艰苦历程
查看>>
2014.7.30-8.3日广大网友的提问解答(答问题的第2个工作周)
查看>>
Powershell管理系列(二十五)PowerShell操作之获取AD账号及邮箱信息
查看>>
android开发 更新升级安装到一半自动闪退
查看>>
Linux安装telnet
查看>>