给出 N 个账户名及其密码,要求对密码进行如下替换:
- 用
@
替换数字1
; - 用
%
替换数字0
; - 用大写字母
L
替换小写字母l
; - 用小写字母
o
替换大写字母O
。
输入第 1 行给出正整数 N,表示输入的账户数量。随后 N 行,每行给出一个账户名及其密码。
如果有需要修改密码的账户,第一行输出需要修改密码的数量,接下来每行输出一个账户名及其修改后的密码。若没有需要修改密码的账户,如果只输入了一个账户,输出There is 1 account and no account is modified
;否则输出There are N accounts and no account is modified
,N 需要用实际输入的账户数量代替。
可定义unordered_map<char,char>
存储需要被替换的字母和替换字母之间的映射关系,然后遍历密码字符串进行相应替换即可。
#include <bits/stdc++.h>
using namespace std;
using gg = long long;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
vector<array<string, 2>> ans; //存储需要进行替换的账户名和密码
unordered_map<char, char> um = {
{'1', '@'}, {'0', '%'}, {'l', 'L'}, {'O', 'o'}};
gg ni;
string user, password;
cin >> ni;
for (gg i = 0; i < ni; ++i) {
cin >> user >> password;
bool f = false; //表示该账户密码是否需要被修改
for (auto& j : password) {
if (um.count(j)) {
j = um[j];
f = true;
}
}
if (f) {
ans.push_back({user, password});
}
}
if (ans.empty()) {
ni == 1 ? (cout << "There is 1 account and no account is modified") :
(cout << "There are " << ni
<< " accounts and no account is modified");
} else {
cout << ans.size() << "\n";
for (auto& i : ans) {
cout << i[0] << " " << i[1] << "\n";
}
}
return 0;
}