-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpoj1051.cpp
60 lines (50 loc) · 1.26 KB
/
poj1051.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <string>
using namespace std;
string code[128];
char decryption(string s)
{
for(int i='A';i<='Z';i++)
if(s==code[i]) return (char)i;
if(s==code['.']) return '.';
if(s==code['?']) return '?';
if(s==code[',']) return ',';
if(s==code['_']) return '_';
}
int main()
{
code['A']=".-";code['B']="-...";code['C']="-.-.";code['D']="-..";
code['E']=".";code['F']="..-.";code['G']="--.";code['H']="....";
code['I']="..";code['J']=".---";code['K']="-.-";code['L']=".-..";
code['M']="--";code['N']="-.";code['O']="---";code['P']=".--.";
code['Q']="--.-";code['R']=".-.";code['S']="...";code['T']="-";
code['U']="..-";code['V']="...-";code['W']=".--";code['X']="-..-";
code['Y']="-.--";code['Z']="--..";code['_']="..--";code['.']="---.";
code[',']=".-.-";code['?']="----";
string origin_s,entry_s,decry_s;
int len[101];
int i=1,n;
cin>>n;
while(i<=n)
{
entry_s.clear();decry_s.clear();
cin>>origin_s;
for(int j=0;j<origin_s.length();j++)
{
entry_s+=code[origin_s[j]];
len[j]=code[origin_s[j]].length();
}
cout<<i<<": ";
int pos = 0;
for(int k=origin_s.length()-1;k>=0;k--)
{
cout<<decryption(entry_s.substr(pos,len[k]));
pos+=len[k];
}
cout<<endl;
i++;
}
return 0;
}