CF BUDDY
← Problems·

1328D · Carousel

1800 · constructive algorithms, dp, graphs

Problem: The round carousel consists of nn figures of animals. Figures are numbered from 11 to nn in order of the carousel moving. Thus, after the nn-th figure the figure with the number 11 follows. Each figure has its own type — the type of the animal corresponding to this figure (the horse, the tiger and so on). The type of animal of the ii-th figure equals tit_i.

The example of the carousel for n=9n=9 and t=[5,5,1,15,1,5,5,1,1]t=[5, 5, 1, 15, 1, 5, 5, 1, 1].

You want to color each figure in one of the colors. You think that it's boring if the carousel contains two different figures (with the distinct types of animals) going one right after another and colored in the same color.

Your task is to color the figures in such a way that the number of distinct colors used is the minimum possible and there are no figures of the different types going one right after another and colored in the same color. If you use exactly kk distinct colors, then the colors of figures should be denoted with integers from 11 to kk.

Input Format: The input contains one or more test cases.

The first line contains one integer qq (1q1041 \le q \le 10^4) — the number of test cases in the test. Then qq test cases follow. One test case is given on two lines.

The first line of the test case contains one integer nn (3n21053 \le n \le 2 \cdot 10^5) — the number of figures in the carousel. Figures are numbered from 11 to nn in order of carousel moving. Assume that after the nn-th figure the figure 11 goes.

The second line of the test case contains nn integers t1,t2,,tnt_1, t_2, \dots, t_n (1ti21051 \le t_i \le 2 \cdot 10^5), where tit_i is the type of the animal of the ii-th figure.

The sum of nn over all test cases does not exceed 21052\cdot10^5.

Output Format: Print qq answers, for each test case print two lines.

In the first line print one integer kk — the minimum possible number of distinct colors of figures.

In the second line print nn integers c1,c2,,cnc_1, c_2, \dots, c_n (1cik1 \le c_i \le k), where cic_i is the color of the ii-th figure. If there are several answers, you can print any.

Sample Cases

Case 1

Input

4
5
1 2 1 2 2
6
1 2 2 1 2 2
5
1 2 1 2 3
3
10 10 10

Output

2
1 2 1 2 2
2
2 1 2 1 2 1
3
2 3 2 3 1
1
1 1 1

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback