这道题直接用map操作的,开始没用迭代器遍历,直接auto然后for一下,但是一直提示编译错误,只好换成迭代器,但是为什么wa掉了呢?自己测试也没问题啊,输出格式注意了,QZ和-都过滤掉了,没有重复行也考虑了,究竟wa在哪里了?请赐教
#include<iostream>
#include<algorithm>
#include<cstring>
#include<string>
#include<map>
using namespace std;
const int N=1e5+10;
int main()
{
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
int n;
cin>>n;
string st;
map<string,int> mp;
for(int i=0;i<n;i++){
cin>>st;
for(int j=0;j<st.length();j++){
if(st[j]=='A'||st[j]=='B'||st[j]=='C')st[j]='2';
else if(st[j]=='D'||st[j]=='E'||st[j]=='F')st[j]='3';
else if(st[j]=='G'||st[j]=='H'||st[j]=='I')st[j]='4';
else if(st[j]=='J'||st[j]=='K'||st[j]=='L')st[j]='5';
else if(st[j]=='M'||st[j]=='N'||st[j]=='O')st[j]='6';
else if(st[j]=='P'||st[j]=='R'||st[j]=='S')st[j]='7';
else if(st[j]=='T'||st[j]=='U'||st[j]=='V')st[j]='8';
else if(st[j]=='W'||st[j]=='X'||st[j]=='Y')st[j]='9';
//else if(st[j]=='-')st.erase(j,1);
}
for(int j=0;j<st.length();j++){
if(st[j]=='-'||st[j]=='Q'||st[j]=='Z')st.erase(j,1);
}
st.insert(3,1,'-');
//cout<<st<<endl;
mp[st]++;
}
bool flag=false;
map<string,int>::iterator it;
for(it=mp.begin();it!=mp.end();it++){
if(it->second>1){
flag=true;
cout<<it->first<<' '<<it->second<<endl;
}
}
if(!flag)cout<<"No duplicates."<<endl;
return 0;
}