CF BUDDY
← Problems·

1530D · Secret Santa

1600 · constructive algorithms, flows, graphs

Problem: Every December, VK traditionally holds an event for its employees named "Secret Santa". Here's how it happens.

nn employees numbered from 11 to nn take part in the event. Each employee ii is assigned a different employee bib_i, to which employee ii has to make a new year gift. Each employee is assigned to exactly one other employee, and nobody is assigned to themselves (but two employees may be assigned to each other). Formally, all bib_i must be distinct integers between 11 and nn, and for any ii, biib_i \ne i must hold.

The assignment is usually generated randomly. This year, as an experiment, all event participants have been asked who they wish to make a gift to. Each employee ii has said that they wish to make a gift to employee aia_i.

Find a valid assignment bb that maximizes the number of fulfilled wishes of the employees.

Input Format: Each test contains multiple test cases. The first line contains the number of test cases tt (1t1051 \le t \le 10^5). Description of the test cases follows.

Each test case consists of two lines. The first line contains a single integer nn (2n21052 \le n \le 2 \cdot 10^5) — the number of participants of the event.

The second line contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n (1ain1 \le a_i \le n; aiia_i \ne i) — wishes of the employees in order from 11 to nn.

It is guaranteed that the sum of nn over all test cases does not exceed 21052 \cdot 10^5.

Output Format: For each test case, print two lines.

In the first line, print a single integer kk (0kn0 \le k \le n) — the number of fulfilled wishes in your assignment.

In the second line, print nn distinct integers b1,b2,,bnb_1, b_2, \ldots, b_n (1bin1 \le b_i \le n; biib_i \ne i) — the numbers of employees assigned to employees 1,2,,n1, 2, \ldots, n.

kk must be equal to the number of values of ii such that ai=bia_i = b_i, and must be as large as possible. If there are multiple answers, print any.

Note: In the first test case, two valid assignments exist: [3,1,2][3, 1, 2] and [2,3,1][2, 3, 1]. The former assignment fulfills two wishes, while the latter assignment fulfills only one. Therefore, k=2k = 2, and the only correct answer is [3,1,2][3, 1, 2].

Sample Cases

Case 1

Input

2
3
2 1 2
7
6 4 6 2 4 5 6

Output

2
3 1 2
4
6 4 7 2 3 5 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