A11199 | Huge Strings
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are given $n$ strings $s_{1},s_{2},...,s_{n}$ consisting of characters $0$ and $1$ . $m$ operations are performed, on each of them you concatenate two existing strings into a new one. On the $i$ -th operation the concatenation $s_{ai}s_{bi}$ is saved into a new string $s_{n+i}$ (the operations are numbered starting from $1$ ). After each operation you need to find the maximum positive integer $k$ such that all possible strings consisting of $0$ and $1$ of length $k$ (there are $2^{k}$ such strings) are substrings of the new string. If there is no such $k$ , print $0$ .
输入格式
The first line contains single integer $n$ ( $1<=n<=100$ ) — the number of strings. The next $n$ lines contain strings $s_{1},s_{2},...,s_{n}$ ( $1<=|s_{i}|<=100$ ), one per line. The total length of strings is not greater than $100$ .
The next line contains single integer $m$ ( $1<=m<=100$ ) — the number of operations. $m$ lines follow, each of them contains two integers $a_{i}$ abd $b_{i}$ ( $1<=a_{i},b_{i}<=n+i-1$ ) — the number of strings that are concatenated to form $s_{n+i}$ .
The next line contains single integer $m$ ( $1<=m<=100$ ) — the number of operations. $m$ lines follow, each of them contains two integers $a_{i}$ abd $b_{i}$ ( $1<=a_{i},b_{i}<=n+i-1$ ) — the number of strings that are concatenated to form $s_{n+i}$ .
输出格式
Print $m$ lines, each should contain one integer — the answer to the question after the corresponding operation.
输入输出样例
输入 #1
5 01 10 101 11111 0 3 1 2 6 5 4 4
输出 #1
1 2 0
On the first operation, a new string "0110" is created. For $k=1$ the two possible binary strings of length $k$ are "0" and "1", they are substrings of the new string. For $k=2$ and greater there exist strings of length $k$ that do not appear in this string (for $k=2$ such string is "00"). So the answer is $1$ .
On the second operation the string "01100" is created. Now all strings of length $k=2$ are present.
On the third operation the string "1111111111" is created. There is no zero, so the answer is $0$ .
On the second operation the string "01100" is created. Now all strings of length $k=2$ are present.
On the third operation the string "1111111111" is created. There is no zero, so the answer is $0$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted