Problem D
Taboo
Taboo is a popular party game. In this game one player, the Clue Giver, prompts his/her teammates to guess a keyword by giving clues. The Clue Giver is also given a list of taboo strings that must not appear in the clues. For example, if the keyword is “Bruce Lee”, the famous kung-fu star, then the taboo strings may be “actor”, “kung-fu”, “fighting”, “martial arts” and “The Game of Death” (Bruce Lee’s final film). The Clue Giver may try such clues as “Fist of Fury star” and “Jeet Kune Do master” to avoid the taboo. Taboo strings bring challenges and fun to the guessing game.
Short clues are preferred, but now you are interested in the
opposite: what is the longest clue? Given
Input
The first line contains an integer,
Output
If your clue can be arbitrarily long, output -1. Otherwise, output a line containing the
longest binary string that does not contain
Sample Input 1 | Sample Output 1 |
---|---|
5 00 01 10 110 111 |
11 |
Sample Input 2 | Sample Output 2 |
---|---|
3 00 01 10 |
-1 |