• 1035 Password (20分)(水)


    To prepare for PAT, the judge sometimes has to generate random passwords for the users. The problem is that there are always some confusing passwords since it is hard to distinguish 1 (one) from l (L in lowercase), or 0 (zero) from O (o in uppercase). One solution is to replace 1 (one) by @0 (zero) by %l by L, and O by o. Now it is your job to write a program to check the accounts generated by the judge, and to help the juge modify the confusing passwords.

    Input Specification:

    Each input file contains one test case. Each case contains a positive integer N (≤), followed by N lines of accounts. Each account consists of a user name and a password, both are strings of no more than 10 characters with no space.

    Output Specification:

    For each test case, first print the number M of accounts that have been modified, then print in the following M lines the modified accounts info, that is, the user names and the corresponding modified passwords. The accounts must be printed in the same order as they are read in. If no account is modified, print in one line There are N accounts and no account is modified where N is the total number of accounts. However, if N is one, you must print There is 1 account and no account is modified instead.

    Sample Input 1:

    3
    Team000002 Rlsp0dfa
    Team000003 perfectpwd
    Team000001 R1spOdfa
    

    Sample Output 1:

    2
    Team000002 RLsp%dfa
    Team000001 R@spodfa
    

    Sample Input 2:

    1
    team110 abcdefg332
    

    Sample Output 2:

    There is 1 account and no account is modified
    

    Sample Input 3:

    2
    team110 abcdefg222
    team220 abcdefg333
    

    Sample Output 3:

    There are 2 accounts and no account is modified
    题目分析:水题 细心就好
     1 #define _CRT_SECURE_NO_WARNINGS
     2 #include <climits>
     3 #include<iostream>
     4 #include<vector>
     5 #include<queue>
     6 #include<map>
     7 #include<stack>
     8 #include<algorithm>
     9 #include<string>
    10 #include<cmath>
    11 using namespace std;
    12 struct S {
    13     string s1, s2;
    14 };
    15 vector<S> V;
    16 int main()
    17 {
    18     int N;
    19     cin >> N;
    20     string s1, s2;
    21     for (int i = 0; i < N; i++)
    22     {
    23         int flag = 0;
    24         cin >> s1 >> s2;
    25         for (int j = 0; j < s2.length(); j++)
    26         {
    27             if (s2[j] == '1')
    28             {
    29                 flag = 1;
    30                 s2[j] = '@';
    31             }
    32             else if (s2[j] == '0')
    33             {
    34                 flag = 1;
    35                 s2[j] = '%';
    36             }
    37             else if (s2[j] == 'l')
    38             {
    39                 flag = 1;
    40                 s2[j] = 'L';
    41             }
    42             else if (s2[j] == 'O')
    43             {
    44                 flag = 1;
    45                 s2[j] ='o';
    46             }
    47         }
    48         if (flag)
    49             V.push_back({ s1,s2 });
    50     }
    51     if (V.size() == 0)
    52     {
    53         if (N == 1)
    54             cout << "There is 1 account and no account is modified";
    55         else
    56             printf("There are %d accounts and no account is modified", N);
    57     }
    58     else
    59     {
    60         cout << V.size() << endl;
    61         for (auto it : V)
    62             cout << it.s1 << " " << it.s2<<endl;
    63     }
    64 }
    View Code
  • 相关阅读:
    Java NIO系列教程(六) 多路复用器Selector
    Java NIO系列教程(五)Buffer
    Java NIO系列教程(四) Scatter/Gather
    ORA-00600: internal error code, arguments: [kcratr_nab_less_than_odr], [1], [1498], [18713], [18720]
    统计单词出现的最多次数(Trie树)
    毁灭梦想的5个方法
    windows内核Api的学习
    android创建目录和文件和安装其它apk
    Java 遍历指定文件夹及子文件夹下的文件
    sqlplus的非交互式使用
  • 原文地址:https://www.cnblogs.com/57one/p/12013590.html
Copyright © 2020-2023  润新知