Codeforces Round #603 (Div. 2) B. PIN Codes(模拟)

time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output

A PIN code is a string that consists of exactly 4 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 n (2≤n≤10) bank cards, the PIN code of the i-th card is pi.

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 n codes would become different.

Formally, in one step, Polycarp picks i-th card (1≤i≤n), then in its PIN code pi selects one position (from 1 to 4), 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?

Input
The first line contains integer t (1≤t≤100) — the number of test cases in the input. Then test cases follow.

The first line of each of t test sets contains a single integer n (2≤n≤10) — the number of Polycarp’s bank cards. The next n lines contain the PIN codes p1,p2,…,pn — one per line. The length of each of them is 4. All PIN codes consist of digits only.

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

In the first line print k — the least number of changes to make all PIN codes different. In the next n 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.

Example
inputCopy

3
2
1234
0600
2
1337
1337
4
3139
3139
3139
3139
outputCopy
0
1234
0600
1
1337
1237
3
3139
3138
3939
6139

#include<bits/stdc++.h>
using namespace std;
string s[15];
map<string,int>h;
int ans;
int n;
void change(int x) {
    h[s[x]]--;
    for(int i=0; i<s[x].size(); i++) {
        char ss=s[x][i];
        for(int j=0; j<10; j++) {
            char c='0'+j;
            s[x][i]=c;
            if(!h[s[x]]) {
                ans++;
                h[s[x]]=1;
                return;
            }
        }
        s[x][i]=ss;
    }
}


int main() {
    int t;
    cin>>t;
    while(t--) {
        h.clear();
        ans=0;
        cin>>n;
        for(int i=0; i<n; i++) {
            cin>>s[i];
            h[s[i]]++;
        }
        for(int i=0; i<n; i++) {
            if(h[s[i]]>1) {
                change(i);
            }
        }
        cout<<ans<<endl;
        for(int i=0; i<n; i++) {
            cout<<s[i]<<endl;
        }
    }
}

借鉴大佬博客

发布了247 篇原创文章 · 获赞 22 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/qq_43658924/article/details/103328275