CF19C.Deletion of Repeats

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Once Bob saw a string. It contained so many different letters, that the letters were marked by numbers, but at the same time each letter could be met in the string at most 10 times. Bob didn't like that string, because it contained repeats: a repeat of length xx is such a substring of length 2x2x , that its first half coincides character by character with its second half. Bob started deleting all the repeats from the string. He does it as follows: while it's possible, Bob takes the shortest repeat, if it is not unique, he takes the leftmost one, and deletes its left half and everything that is to the left of this repeat.

You're given the string seen by Bob. Find out, what it will look like after Bob deletes all the repeats in the way described above.

输入格式

The first input line contains integer nn ( 1<=n<=1051<=n<=10^{5} ) — length of the string. The following line contains nn space-separated integer numbers from 00 to 10910^{9} inclusive — numbers that stand for the letters of the string. It's guaranteed that each letter can be met in the string at most 10 times.

输出格式

In the first line output the length of the string's part, left after Bob's deletions. In the second line output all the letters (separated by a space) of the string, left after Bob deleted all the repeats in the described way.

输入输出样例

  • 输入#1

    6
    1 2 3 1 2 3
    

    输出#1

    3
    1 2 3 
    
  • 输入#2

    7
    4 5 6 5 6 7 7
    

    输出#2

    1
    7 
    
首页