A1533.[COCI-2015_2016-contest5]#1 MULTIGRAM

普及/提高-

COCI

通过率:0%

时间限制:1.00s

内存限制:128MB

题目描述

Pero is a passionate lover of riddles. The newest type of riddles he has come across requires the solver to check whether the given word is a multigram.
A multigram is a word that consists of concatenating two or more words that are all mutually anagrams. The first of these words is called the root of the multigram. For instance, the word bbabab is a multigram with the root bba because it consists of anagrams bba and bab.
Help Pero solve the riddle by determining whether his word is a multigram and determining its root in case it is. If there are multiple possible roots of the multigram, output the shortest.
Please note: Two words are mutually anagrams if one of them can be obtained from the other by changing the letter order.

输入格式

The first and only line of input contains a word of length at most 100 000 lowercase English character

输出格式

If the given word is not a multigram, output −
1.
Otherwise, output the shortest root of the given word in one line.

输入输出样例

  • 输入#1

    aaaa 

    输出#1

    a
  • 输入#2

    ab

    输出#2

    -1 
  • 输入#3

    bbabab

    输出#3

    bba

说明/提示

Clarification of the first example: Notice that the word “aa” could also be the root, but “a” is shorter.
Clarification of the second example: The word is not a multigram because “a” and “b” are not mutually
anagrams.

首页