-
Notifications
You must be signed in to change notification settings - Fork 0
/
79.cpp
56 lines (47 loc) · 1.44 KB
/
79.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
#include <set>
#include <map>
#include <string>
#include <iostream>
int main() {
unsigned int logins = 50; // p079_keylog.txt contains 50 logins
//#define ORIGINAL
#ifndef ORIGINAL
std::cin >> logins;
#endif
// read all logged inputs
// for each digit/letter, store its predecessor
std::map < char, std::set < char >> previous;
while (logins--) {
std::string line;
std::cin >> line;
// create an empty set for the initial letter (if it doesn't exist yet)
previous[line[0]];
// and for the other letters, store their predecessors
for (unsigned int i = 1; i < line.size(); i++)
previous[line[i]].insert(line[i - 1]);
}
// until we have no characters left ...
std::string result;
while (!previous.empty()) {
// find lexicographically smallest letter with no predecessor
auto emptySet = previous.begin();
while (emptySet != previous.end() && !emptySet -> second.empty())
emptySet++;
// invalid ?
if (emptySet == previous.end()) {
result = "SMTH WRONG"; // Hackerrank's message if code cannot be decrypted
break;
}
// print letter
auto current = emptySet -> first;
result += current;
// that letter won't appear in the keyphrase anymore
previous.erase(current);
// remove from the predecessor list of all other letters
for (auto & p: previous)
p.second.erase(current);
}
// print keyphrase
std::cout << result << std::endl;
return 0;
}