CF1263B.PIN Codes

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A PIN code is a string that consists of exactly 44 digits. Examples of possible PIN codes: 7013, 0000 and 0990. Please note that the PIN code can begin with any digit, even with 0.

Polycarp has nn ( 2n102 \le n \le 10 ) bank cards, the PIN code of the ii -th card is pip_i .

Polycarp has recently read a recommendation that it is better to set different PIN codes on different cards. Thus he wants to change the minimal number of digits in the PIN codes of his cards so that all nn codes would become different.

Formally, in one step, Polycarp picks ii -th card ( 1in1 \le i \le n ), then in its PIN code pip_i selects one position (from 11 to 44 ), and changes the digit in this position to any other. He needs to change the minimum number of digits so that all PIN codes become different.

Polycarp quickly solved this problem. Can you solve it?

输入格式

The first line contains integer tt ( 1t1001 \le t \le 100 ) — the number of test cases in the input. Then test cases follow.

The first line of each of tt test sets contains a single integer nn ( 2n102 \le n \le 10 ) — the number of Polycarp's bank cards. The next nn lines contain the PIN codes p1,p2,,pnp_1, p_2, \dots, p_n — one per line. The length of each of them is 44 . All PIN codes consist of digits only.

输出格式

Print the answers to tt test sets. The answer to each set should consist of a n+1n + 1 lines

In the first line print kk — the least number of changes to make all PIN codes different. In the next nn lines output the changed PIN codes in the order corresponding to their appearance in the input. If there are several optimal answers, print any of them.

输入输出样例

  • 输入#1

    3
    2
    1234
    0600
    2
    1337
    1337
    4
    3139
    3139
    3139
    3139
    

    输出#1

    0
    1234
    0600
    1
    1337
    1237
    3
    3139
    3138
    3939
    6139
    
首页