题库练习 Missing Bigram
← 上一题 下一题 →

A14673 | Missing Bigram

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Polycarp has come up with a new game to play with you. He calls it "A missing bigram".

A bigram of a word is a sequence of two adjacent letters in it.

For example, word "abbaaba" contains bigrams "ab", "bb", "ba", "aa", "ab" and "ba".

The game goes as follows. First, Polycarp comes up with a word, consisting only of lowercase letters 'a' and 'b'. Then, he writes down all its bigrams on a whiteboard in the same order as they appear in the word. After that, he wipes one of them off the whiteboard.

Finally, Polycarp invites you to guess what the word that he has come up with was.

Your goal is to find any word such that it's possible to write down all its bigrams and remove one of them, so that the resulting sequence of bigrams is the same as the one Polycarp ended up with.

The tests are generated in such a way that the answer exists. If there are multiple answers, you can print any of them.

输入格式

The first line contains a single integer $t$ ( $1 \le t \le 2000$ ) — the number of testcases.

The first line of each testcase contains a single integer $n$ ( $3 \le n \le 100$ ) — the length of the word Polycarp has come up with.

The second line of each testcase contains $n-2$ bigrams of that word, separated by a single space. Each bigram consists of two letters, each of them is either 'a' or 'b'.

Additional constraint on the input: there exists at least one string such that it is possible to write down all its bigrams, except one, so that the resulting sequence is the same as the sequence in the input. In other words, the answer exists.

输出格式

For each testcase print a word, consisting of $n$ letters, each of them should be either 'a' or 'b'. It should be possible to write down all its bigrams and remove one of them, so that the resulting sequence of bigrams is the same as the one Polycarp ended up with.

The tests are generated in such a way that the answer exists. If there are multiple answers, you can print any of them.

输入输出样例

输入 #1
4
7
ab bb ba aa ba
7
ab ba aa ab ba
3
aa
5
bb ab bb
输出 #1
abbaaba
abaabaa
baa
bbabb
C++ 编辑器
输入
输出