A13610 | Common Prefixes
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
The length of the longest common prefix of two strings $s = s_1 s_2 \ldots s_n$ and $t = t_1 t_2 \ldots t_m$ is defined as the maximum integer $k$ ( $0 \le k \le min(n,m)$ ) such that $s_1 s_2 \ldots s_k$ equals $t_1 t_2 \ldots t_k$ .
Koa the Koala initially has $n+1$ strings $s_1, s_2, \dots, s_{n+1}$ .
For each $i$ ( $1 \le i \le n$ ) she calculated $a_i$ — the length of the longest common prefix of $s_i$ and $s_{i+1}$ .
Several days later Koa found these numbers, but she couldn't remember the strings.
So Koa would like to find some strings $s_1, s_2, \dots, s_{n+1}$ which would have generated numbers $a_1, a_2, \dots, a_n$ . Can you help her?
If there are many answers print any. We can show that answer always exists for the given constraints.
Koa the Koala initially has $n+1$ strings $s_1, s_2, \dots, s_{n+1}$ .
For each $i$ ( $1 \le i \le n$ ) she calculated $a_i$ — the length of the longest common prefix of $s_i$ and $s_{i+1}$ .
Several days later Koa found these numbers, but she couldn't remember the strings.
So Koa would like to find some strings $s_1, s_2, \dots, s_{n+1}$ which would have generated numbers $a_1, a_2, \dots, a_n$ . Can you help her?
If there are many answers print any. We can show that answer always exists for the given constraints.
输入格式
Each test contains multiple test cases. The first line contains $t$ ( $1 \le t \le 100$ ) — the number of test cases. Description of the test cases follows.
The first line of each test case contains a single integer $n$ ( $1 \le n \le 100$ ) — the number of elements in the list $a$ .
The second line of each test case contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $0 \le a_i \le 50$ ) — the elements of $a$ .
It is guaranteed that the sum of $n$ over all test cases does not exceed $100$ .
The first line of each test case contains a single integer $n$ ( $1 \le n \le 100$ ) — the number of elements in the list $a$ .
The second line of each test case contains $n$ integers $a_1, a_2, \ldots, a_n$ ( $0 \le a_i \le 50$ ) — the elements of $a$ .
It is guaranteed that the sum of $n$ over all test cases does not exceed $100$ .
输出格式
For each test case:
Output $n+1$ lines. In the $i$ -th line print string $s_i$ ( $1 \le |s_i| \le 200$ ), consisting of lowercase Latin letters. Length of the longest common prefix of strings $s_i$ and $s_{i+1}$ has to be equal to $a_i$ .
If there are many answers print any. We can show that answer always exists for the given constraints.
Output $n+1$ lines. In the $i$ -th line print string $s_i$ ( $1 \le |s_i| \le 200$ ), consisting of lowercase Latin letters. Length of the longest common prefix of strings $s_i$ and $s_{i+1}$ has to be equal to $a_i$ .
If there are many answers print any. We can show that answer always exists for the given constraints.
输入输出样例
输入 #1
4 4 1 2 4 2 2 5 3 3 1 3 1 3 0 0 0
输出 #1
aeren ari arousal around ari monogon monogamy monthly kevinvu kuroni kurioni korone anton loves adhoc problems
In the $1$ -st test case one of the possible answers is $s = [aeren, ari, arousal, around, ari]$ .
Lengths of longest common prefixes are:
- Between $\color{red}{a}eren$ and $\color{red}{a}ri$ $\rightarrow 1$
- Between $\color{red}{ar}i$ and $\color{red}{ar}ousal$ $\rightarrow 2$
- Between $\color{red}{arou}sal$ and $\color{red}{arou}nd$ $\rightarrow 4$
- Between $\color{red}{ar}ound$ and $\color{red}{ar}i$ $\rightarrow 2$
Lengths of longest common prefixes are:
- Between $\color{red}{a}eren$ and $\color{red}{a}ri$ $\rightarrow 1$
- Between $\color{red}{ar}i$ and $\color{red}{ar}ousal$ $\rightarrow 2$
- Between $\color{red}{arou}sal$ and $\color{red}{arou}nd$ $\rightarrow 4$
- Between $\color{red}{ar}ound$ and $\color{red}{ar}i$ $\rightarrow 2$
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted