题库练习 Gardener and the Capybaras (easy version)
← 上一题 下一题 →

A15605 | Gardener and the Capybaras (easy version)

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

题目描述

This is an easy version of the problem. The difference between the versions is that the string can be longer than in the easy version. You can only do hacks if both versions of the problem are passed.

Kazimir Kazimirovich is a Martian gardener. He has a huge orchard of binary balanced apple trees.

Recently Casimir decided to get himself three capybaras. The gardener even came up with their names and wrote them down on a piece of paper. The name of each capybara is a non-empty line consisting of letters "a" and "b".

Denote the names of the capybaras by the lines $a$ , $b$ , and $c$ . Then Casimir wrote the nonempty lines $a$ , $b$ , and $c$ in a row without spaces. For example, if the capybara's name was "aba", "ab", and "bb", then the string the gardener wrote down would look like "abaabbb".

The gardener remembered an interesting property: either the string $b$ is lexicographically not smaller than the strings $a$ and $c$ at the same time, or the string $b$ is lexicographically not greater than the strings $a$ and $c$ at the same time. In other words, either $a \le b$ and $c \le b$ are satisfied, or $b \le a$ and $b \le c$ are satisfied (or possibly both conditions simultaneously). Here $\le$ denotes the lexicographic "less than or equal to" for strings. Thus, $a \le b$ means that the strings must either be equal, or the string $a$ must stand earlier in the dictionary than the string $b$ . For a more detailed explanation of this operation, see "Notes" section.

Today the gardener looked at his notes and realized that he cannot recover the names because they are written without spaces. He is no longer sure if he can recover the original strings $a$ , $b$ , and $c$ , so he wants to find any triplet of names that satisfy the above property.

![](/uploads/acgo/image/dbe73c685767bd07_5c753ca44e35.jpeg)

输入格式

Each test contains multiple test cases. The first line contains the number of test cases $t$ ( $1 \le t \le 500$ ). The description of the test cases follows.

The only line of a test case contains the string $s$ ( $3 \le |s| \le 100$ ) — the names of the capybaras, written together. The string consists of English letters 'a' and 'b' only.

It is guaranteed that the sum of string lengths over all test cases does not exceed $500$ .

输出格式

For each test case, print three strings $a$ , $b$ and $c$ on a single line, separated by spaces — names of capybaras, such that writing them without spaces results in a line $s$ . Either $a \le b$ and $c \le b$ , or $b \le a$ and $b \le c$ must be satisfied.

If there are several ways to restore the names, print any of them. If the names cannot be recovered, print ":(" (without quotes).

输入输出样例

输入 #1
5
bbba
aba
aaa
abba
abbb
输出 #1
b bb a
a b a
a a a
ab b a
a bb b
C++ 编辑器
输入
输出