CF48D.Permutations

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A permutation is a sequence of integers from 11 to nn of length nn containing each number exactly once. For example, (1)(1) , (4,3,5,1,2)(4,3,5,1,2) , (3,2,1)(3,2,1) are permutations, and (1,1)(1,1) , (4,3,1)(4,3,1) , (2,3,4)(2,3,4) are not.

There are many tasks on permutations. Today you are going to solve one of them. Let’s imagine that somebody took several permutations (perhaps, with a different number of elements), wrote them down consecutively as one array and then shuffled the resulting array. The task is to restore the initial permutations if it is possible.

输入格式

The first line contains an integer nn ( 1<=n<=1051<=n<=10^{5} ). The next line contains the mixed array of nn integers, divided with a single space. The numbers in the array are from 11 to 10510^{5} .

输出格式

If this array can be split into several permutations so that every element of the array belongs to exactly one permutation, print in the first line the number of permutations. The second line should contain nn numbers, corresponding to the elements of the given array. If the ii -th element belongs to the first permutation, the ii -th number should be 11 , if it belongs to the second one, then its number should be 22 and so on. The order of the permutations’ numbering is free.

If several solutions are possible, print any one of them. If there’s no solution, print in the first line 1-1 .

输入输出样例

  • 输入#1

    9
    1 2 3 1 2 1 4 2 5
    

    输出#1

    3
    3 1 2 1 2 2 2 3 2
    
  • 输入#2

    4
    4 3 2 1
    

    输出#2

    1
    1 1 1 1 
  • 输入#3

    4
    1 2 2 3
    

    输出#3

    -1
    

说明/提示

In the first sample test the array is split into three permutations: (2,1)(2,1) , (3,2,1,4,5)(3,2,1,4,5) , (1,2)(1,2) . The first permutation is formed by the second and the fourth elements of the array, the second one — by the third, the fifth, the sixth, the seventh and the ninth elements, the third one — by the first and the eigth elements. Clearly, there are other splitting variants possible.

首页