A13418 | Binary Period
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Let's say string $s$ has period $k$ if $s_i = s_{i + k}$ for all $i$ from $1$ to $|s| - k$ ( $|s|$ means length of string $s$ ) and $k$ is the minimum positive integer with this property.
Some examples of a period: for $s$ ="0101" the period is $k=2$ , for $s$ ="0000" the period is $k=1$ , for $s$ ="010" the period is $k=2$ , for $s$ ="0011" the period is $k=4$ .
You are given string $t$ consisting only of 0's and 1's and you need to find such string $s$ that:
1. String $s$ consists only of 0's and 1's;
2. The length of $s$ doesn't exceed $2 \cdot |t|$ ;
3. String $t$ is a subsequence of string $s$ ;
4. String $s$ has smallest possible period among all strings that meet conditions 1—3.
Let us recall that $t$ is a subsequence of $s$ if $t$ can be derived from $s$ by deleting zero or more elements (any) without changing the order of the remaining elements. For example, $t$ ="011" is a subsequence of $s$ ="10101".
Some examples of a period: for $s$ ="0101" the period is $k=2$ , for $s$ ="0000" the period is $k=1$ , for $s$ ="010" the period is $k=2$ , for $s$ ="0011" the period is $k=4$ .
You are given string $t$ consisting only of 0's and 1's and you need to find such string $s$ that:
1. String $s$ consists only of 0's and 1's;
2. The length of $s$ doesn't exceed $2 \cdot |t|$ ;
3. String $t$ is a subsequence of string $s$ ;
4. String $s$ has smallest possible period among all strings that meet conditions 1—3.
Let us recall that $t$ is a subsequence of $s$ if $t$ can be derived from $s$ by deleting zero or more elements (any) without changing the order of the remaining elements. For example, $t$ ="011" is a subsequence of $s$ ="10101".
输入格式
The first line contains single integer $T$ ( $1 \le T \le 100$ ) — the number of test cases.
Next $T$ lines contain test cases — one per line. Each line contains string $t$ ( $1 \le |t| \le 100$ ) consisting only of 0's and 1's.
Next $T$ lines contain test cases — one per line. Each line contains string $t$ ( $1 \le |t| \le 100$ ) consisting only of 0's and 1's.
输出格式
Print one string for each test case — string $s$ you needed to find. If there are multiple solutions print any one of them.
输入输出样例
输入 #1
4 00 01 111 110
输出 #1
00 01 11111 1010
In the first and second test cases, $s = t$ since it's already one of the optimal solutions. Answers have periods equal to $1$ and $2$ , respectively.
In the third test case, there are shorter optimal solutions, but it's okay since we don't need to minimize the string $s$ . String $s$ has period equal to $1$ .
In the third test case, there are shorter optimal solutions, but it's okay since we don't need to minimize the string $s$ . String $s$ has period equal to $1$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted