CF353B.Two Heaps

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Valera has 2n2·n cubes, each cube contains an integer from 1010 to 9999 . He arbitrarily chooses nn cubes and puts them in the first heap. The remaining cubes form the second heap.

Valera decided to play with cubes. During the game he takes a cube from the first heap and writes down the number it has. Then he takes a cube from the second heap and write out its two digits near two digits he had written (to the right of them). In the end he obtained a single fourdigit integer — the first two digits of it is written on the cube from the first heap, and the second two digits of it is written on the second cube from the second heap.

Valera knows arithmetic very well. So, he can easily count the number of distinct fourdigit numbers he can get in the game. The other question is: how to split cubes into two heaps so that this number (the number of distinct fourdigit integers Valera can get) will be as large as possible?

输入格式

The first line contains integer nn (1<=n<=100)(1<=n<=100) . The second line contains 2n2·n space-separated integers aia_{i} (10<=ai<=99)(10<=a_{i}<=99) , denoting the numbers on the cubes.

输出格式

In the first line print a single number — the maximum possible number of distinct four-digit numbers Valera can obtain. In the second line print 2n2·n numbers bib_{i} (1<=bi<=2)(1<=b_{i}<=2) . The numbers mean: the ii -th cube belongs to the bib_{i} -th heap in your division.

If there are multiple optimal ways to split the cubes into the heaps, print any of them.

输入输出样例

  • 输入#1

    1
    10 99
    

    输出#1

    1
    2 1 
    
  • 输入#2

    2
    13 24 13 45
    

    输出#2

    4
    1 2 2 1 
    

说明/提示

In the first test case Valera can put the first cube in the first heap, and second cube — in second heap. In this case he obtain number 10991099 . If he put the second cube in the first heap, and the first cube in the second heap, then he can obtain number 99109910 . In both cases the maximum number of distinct integers is equal to one.

In the second test case Valera can obtain numbers 1313,1345,2413,24451313,1345,2413,2445 . Note, that if he put the first and the third cubes in the first heap, he can obtain only two numbers 13241324 and 13451345 .

首页