-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfalsesecurity.cpp
63 lines (62 loc) · 1.19 KB
/
falsesecurity.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
60
61
62
63
#include <bits/stdc++.h>
using namespace std;
int main() {
map<string, string> to_morse({
{"A", ".-"},
{"B", "-..."},
{"C", "-.-."},
{"D", "-.."},
{"E", "."},
{"F", "..-."},
{"G", "--."},
{"H", "...."},
{"I", ".."},
{"J", ".---"},
{"K", "-.-"},
{"L", ".-.."},
{"M", "--"},
{"N", "-."},
{"O", "---"},
{"P", ".--."},
{"Q", "--.-"},
{"R", ".-."},
{"S", "..."},
{"T", "-"},
{"U", "..-"},
{"V", "...-"},
{"W", ".--"},
{"X", "-..-"},
{"Y", "-.--"},
{"Z", "--.."},
{"_", "..--"},
{",", ".-.-"},
{".", "---."},
{"?", "----"},
});
map<string, string> from_morse;
for (auto [letter, code]: to_morse) {
from_morse[code] = letter;
}
string c;
while (getline(cin, c)) {
string mc, m, len;
for (char l: c) {
string code = to_morse[string(1, l)];
mc += code;
len += to_string(code.size());
}
reverse(len.begin(), len.end());
int nxt = 0;
for (char n: len) {
int cnt = n - '0';
string code;
while (cnt--) {
code += mc[nxt];
nxt++;
}
m += from_morse[code];
}
cout << m << endl;
}
return 0;
}