1035 Password
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.
Each input file contains one test case. Each case contains a positive integer N (≤1000), 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.
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.
- 3
- Team000002 Rlsp0dfa
- Team000003 perfectpwd
- Team000001 R1spOdfa
- 2
- Team000002 RLsp%dfa
- Team000001 R@spodfa
- 1
- team110 abcdefg332
There is 1 account and no account is modified
- 2
- team110 abcdefg222
- team220 abcdefg333
There are 2 accounts and no account is modified
总结:这题还是比较简单的,没有太大的难度,但是不知道为什么还有一个测试点没有通过(原来是最后输出的单词打错了!)
代码:
- #include
- using namespace std;
-
- int main(){
- int n;
- cin >> n;
- string q[1010];
-
- int cot=0;
- for(int i=0;i
- string s,t,w;
- cin >> s >> t;
- w=t;
- for(int j=0;j
size();j++){ - if(t[j]=='1') t[j]='@';
- else if(t[j]=='0') t[j]='%';
- else if(t[j]=='l') t[j]='L';
- else if(t[j]=='O') t[j]='o';
- }
- if(w!=t){
- q[cot++]=s;
- q[cot++]=t;
- }
- }
- if(cot==0 && n==1) printf("There is 1 account and no account is modified\n");
- else if(cot==0 && n!=1) printf("There are %d accounts and no accout is modified\n",n);
- else{
- printf("%d\n",cot/2);
- for(int i=0;i
- cout << q[i++] << ' ' << q[i++] << endl;
- }
- }
- return 0;
- }
大佬代码:
最后是将两个字符串和在一起存进了vector数组当中,很好的想法,多学习学习!
- #include
- #include
- using namespace std;
- int main() {
- int n;
- scanf("%d", &n);
- vector
v; - for(int i = 0; i < n; i++) {
- string name, s;
- cin >> name >> s;
- int len = s.length(), flag = 0;
- for(int j = 0; j < len; j++) {
- switch(s[j]) {
- case '1' : s[j] = '@'; flag = 1; break;
- case '0' : s[j] = '%'; flag = 1; break;
- case 'l' : s[j] = 'L'; flag = 1; break;
- case 'O' : s[j] = 'o'; flag = 1; break;
- }
- }
- if(flag) {
- string temp = name + " " + s;
- v.push_back(temp);
- }
- }
- int cnt = v.size();
- if(cnt != 0) {
- printf("%d\n", cnt);
- for(int i = 0; i < cnt; i++)
- cout << v[i] << endl;
- } else if(n == 1) {
- printf("There is 1 account and no account is modified");
- } else {
- printf("There are %d accounts and no account is modified", n);
- }
- return 0;
- }
好好学习,天天向上!
我要考研!
2022.11.3(这个代码还不如之前写的他,唉!)
- #include
- #include
- using namespace std;
-
- typedef pair
PII; - int main(){
- int n;
- scanf("%d",&n);
- vector
v; -
- string name,password;
- for(int i=0;i
- cin >> name >> password;
- bool flag=false;
- for(char &c:password){
- if(c=='1'){
- c='@';
- flag=true;
- }
- else if(c=='0'){
- c='%';
- flag=true;
- }
- else if(c=='l'){
- c='L';
- flag=true;
- }
- else if(c=='O'){
- c='o';
- flag=true;
- }
- }
- if(flag) v.push_back({name,password});
- }
- if(v.size()==0){
- if(n==1) printf("There is 1 account and no account is modified\n");
- else printf("There are %d accounts and no account is modified\n",n);
- }
- else{
- printf("%d\n",v.size());
- for(int i=0;i
size();i++) - cout << v[i].first << ' ' << v[i].second << endl;
- }
-
- return 0;
- }
-
相关阅读:
计蒜客详解合集(1)期
AOP概念及作用
虚拟机中centos扩展根目录空间
南大通用数据库-Gbase-8a-学习-07-集群节点缩容(8.6版本)
沉睡者IT - 中视频破10万播放秘诀,只需一个无脑动作
14 使用Vue + el-form + rules实现图书信息录入功能实战
垃圾回收的知识点
Android OpenGL ES 3.0 开发 :3D实例化(Instancing 3D)
ESP32上实现面向对象的C++ OOP——面向对象的点灯
ROS系统下webots安装
-
原文地址:https://blog.csdn.net/weixin_50679551/article/details/126922650