UVa 508-Morse Mismatches(検索)
1868 ワード
アルファベットのモールス符号化、辞書を入力し、その後符号化された単語を入力し、対応する単語の出力を要求する.
mapを使用してモールス符号化を保存し、辞書を読み込んだ後、各単語の符号化をvectorに保存してソートします.次に、入力された各モールス符号化列について、辞書と比較して出力する.
紫書の第四章の問題は、STLを習ってからもっと簡単にします.
mapを使用してモールス符号化を保存し、辞書を読み込んだ後、各単語の符号化をvectorに保存してソートします.次に、入力された各モールス符号化列について、辞書と比較して出力する.
紫書の第四章の問題は、STLを習ってからもっと簡単にします.
#include<iostream>
#include<algorithm>
#include<string>
#include<vector>
#include<map>
using namespace std;
string s;
map<char,string> decode;
struct m_word{
string s,s0;
m_word(string s="",string s0=""):s(s),s0(s0){}
bool operator < (const m_word &x) const {
return s0.length()==x.s0.length()?s0<x.s0:s0.length()<x.s0.length();
}
};
vector<m_word> dict;
string code(){// 。
string s0;
for(int i=0;i<s.length();++i){
s0+=decode[s[i]];
}
return s0;
}
int main(){
ios::sync_with_stdio(false);
while(1){// map。
char c;
cin>>c;
if(c=='*') break;
cin>>s;
cin.get();
decode[c]=s;
}
while(1){// 。
cin>>s;
if(s=="*") break;
dict.push_back(m_word(s,code()));
}
sort(dict.begin(),dict.end());
while(1){
cin>>s;
if(s=="*") break;
int t=0,cnt;
while(1){// 。
cnt=0;
for(int i=0;i<dict.size();++i){
if(dict[i].s0==s.substr(0,s.size()-t)){
if(!cnt) cout<<dict[i].s;
cnt++;
}
else if(dict[i].s0.substr(0,dict[i].s0.size()-t)==s){
if(!cnt) cout<<dict[i].s;
cnt++;
}
}
if(cnt) break;
++t;
}
if(t) cout<<"?";
else if(cnt!=1&&!t) cout<<"!";
cout<<endl;
}
return 0;
}