Valera has 2·n cubes, each cube contains an integer from 10 to 99. He arbitrarily chooses n 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 n (1 ≤ n ≤ 100). The second line contains 2·n space-separated integers ai (10 ≤ ai ≤ 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 2·n numbers bi (1 ≤ bi ≤ 2). The numbers mean: the i-th cube belongs to the bi-th heap in your division.
If there are multiple optimal ways to split the cubes into the heaps, print any of them.
1 10 99
1 2 1
2 13 24 13 45
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 number1099. If he put the second cube in the first heap, and the first cube in the second heap, then he can obtain number 9910. 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, 2445. Note, that if he put the first and the third cubes in the first heap, he can obtain only two numbers 1324 and 1345.
原理很简单,就是,尽可能的分成两堆一样多的,比如,如果有多于1个的13,那么两堆各一半,不就是最大的了么!
#include <iostream>
#include <stdio.h>
#include <string.h>
using namespace std;
int pri[300],ans[300],x[300],y[300];
int main()
{
int n,i;
while(scanf("%d",&n)!=EOF){
int s[2],x1=0,x2=0;
s[0]=s[1]=0;
memset(pri,0,sizeof(pri));
memset(ans,-1,sizeof(ans));
memset(y,0,sizeof(y));
for(i=0;i<n+n;i++)
scanf("%d",&x[i]),pri[x[i]]++;
int flag=0;
for(i=10;i<100;i++){
if(!pri[i])continue;
if(pri[i]>=2){
s[0]++,s[1]++;
}
else if(pri[i]==1){
ans[i]=s[0]<s[1];
s[0]<s[1]?s[0]++:s[1]++;
}
}
cout<<s[0]*s[1]<<endl;
for(i=10;i<100;i++){
if(!pri[i])continue;
if(pri[i]>=2&&(pri[i]&1)){
ans[i]=s[0]<s[1];
s[0]<s[1]?s[0]++:s[1]++;
}
}
for(int j=0;j<n+n;j++){
i=x[j];
if(j){
if(y[i]<pri[i]/2){printf(" 1");}
else if(y[i]<pri[i]/2+pri[i]/2)printf(" 2");
else printf(" %d",ans[i]+1);
}
else {
if(y[i]<pri[i]/2){printf("1");}
else if(y[i]<pri[i]/2+pri[i]/2)printf("2");
else printf("%d",ans[i]+1);
}
y[i]++;
}
printf("\n");
}
return 0;
}