zoukankan      html  css  js  c++  java
  • [Codeforces]1263B PIN Code

    题目

    A PIN code is a string that consists of exactly 44 digits. Examples of possible PIN codes: 70137013, 00000000 and 09900990. Please note that the PIN code can begin with any digit, even with 00.

    Polycarp has n(2n10)n(2≤n≤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 (1in)(1≤i≤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 t(1t100)t (1≤t≤100) — the number of test cases in the input. Then test cases follow.

    The first line of each of tttest sets contains a single integer n(2n10)n (2≤n≤10) — the number of Polycarp’s bank cards. The next nn lines contain the PIN codes p1,p2,,pnp_1,p_2,…,p_n — one per line. The length of each of them is 44. All PIN codes consist of digits only.

    输出

    Print the answers to t 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.

    题目大意

    tt组数据,每组给定nn个可能有重复的四位数,每次变换可以改变一个数字的任意一位,求最少多少次变换后没有相同的数字。

    思路

    一开始是想记录前三位相同的数字可用(没有已有数字填充)的个数,然后再贪心,然后换前2位……
    后来发现n<=10n<=10的致命条件。
    于是难度跳崖下降。我们每个数字肯定最多只需要变换一次就能保证不重复(0-9有10个位置)。
    开一个map记录当前位置有多少个数,然后找到当前位置数个数>1>1就使ans+=mp[now]1ans += mp[now] - 1即可统计出变换次数。
    那么求变换后序列呢?因为每个数肯定都可以通过改变其中一位来保证不重复,因此直接枚举改变一位,如果改变后的位置无数则变过去就可以了。
    复杂度O(nt)O(nt)

    代码

    #include <cstdio>
    #include <iostream>
    #include <string>
    #include <map>
    using namespace std;
    int t, n, ans;
    map<string, int> ht;
    string all[11];
    int main()
    {
        cin.tie(0);
        ios::sync_with_stdio(false);
        cin >> t;
        while (t--)
        {
            ans = 0;
            ht.clear();
            cin >> n;
            for (int i = 1; i <= n; ++i)
                cin >> all[i], ++ht[all[i]];
            for (map<string, int>::iterator it = ht.begin(); it != ht.end(); ++it)
                ans += it->second - 1;
            cout << ans << endl;//直接先统计出答案,每组都要且只要进行n-1次变换
            for (int i = 1; i <= n; ++i)
            {
                map<string, int>::iterator it = ht.find(all[i]);
                if (it == ht.end())
                    continue;
                if (it->second > 1)
                {
                    string s = all[i];
                    for (int j = 0; j <= 9; ++j)
                    {
                        s[3] = j + '0';
                        if (ht.find(s) == ht.end())
                        {
                            ht[s] = 1;
                            cout << s << endl;
                            --it->second;//这里只进行1次变换,因为每个输入的数据都会遍历到,所以最后一定会减到1
                            break;
                        }
                    }
                }
                else
                    cout << all[i] << endl;
            }
        }
        return 0;
    }
    
  • 相关阅读:
    SharePoint与RMS集成中关于权限的一个技术点
    SharePoint Alert
    SharePoint Explorer View
    在查看network traffic的时候, TCP Chimney offload的影响
    SharePoint Profile Import
    为SharePoint添加Event Receiver
    通过Telnet来发送邮件
    如何查看扩展出来的web application?
    Windows Host 文件
    Wscript.Shell 对象详细介绍
  • 原文地址:https://www.cnblogs.com/Clouder-Blog/p/12146647.html
Copyright © 2011-2022 走看看