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;
- }
-
相关阅读:
idea插件推荐
高内聚低耦合
【Kafka消息队列】生产者发送消息流程
通过商品id采集京东商品详情数据(含价格、优惠券、详情、主图等字段)
mysql主从搭建详细步骤
简单的bbs发布
LDblock绘制连锁不平衡和单体型图
2022字节跳动Byte Camp夏令营:53所国内外高校学员云端完成24个项目
java计算机毕业设计网上图书销售系统源程序+mysql+系统+lw文档+远程调试
H3C交换机如何重置console口密码
-
原文地址:https://blog.csdn.net/weixin_50679551/article/details/126922650
-
最新文章
-
沪漂五周年了:我越来越迷茫了
Agentic Skill Routing 实战:别再把所有 Skill 塞进 AI Agent 上下文
MySQL-Seconds_behind_master的精度误差
[MAF预定义ChatClient中间件-03]CachingChatClient——利用缓存省钱省时间
AI的至暗历史:从万众期待到被政府撤资,AI的两次死亡徘徊
Agent OS :五种驯服不确定性的范式
PortSwigger SQL注入LAB11
数据库即时编译JIT
[Begin]AI Learn Data Day 0
深度学习进阶(二十七)现代 LLM 的核心架构设计其二:SwiGLU