-
Notifications
You must be signed in to change notification settings - Fork 0
/
642 - Word Amalgamation.cpp
94 lines (68 loc) · 1.75 KB
/
642 - Word Amalgamation.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#include <bits/stdc++.h>
using namespace std;
int getKey(const string& str);
bool areAnagrams(const string& str1, const string& str2);
int main() {
string str;
cin >> str;
map<int, vector<string>> anagrams;
while (str != "XXXXXX") {
int key = getKey(str);
auto it = anagrams.find(key);
if (it != anagrams.end()){
vector<string> &v = it->second;
v.push_back(str);
} else {
vector<string> v;
v.push_back(str);
anagrams[key] = v;
}
cin >> str;
}
cin >> str;
while (str != "XXXXXX") {
int key = getKey(str);
auto it = anagrams.find(key);
if (it != anagrams.end()){
vector<string> &v = it->second;
sort(v.begin(), v.end());
bool found = false;
for (const auto & i : v) {
bool print = areAnagrams(str, i);
found |= print;
if (print)
cout << i << endl;
}
if (!found)
cout << "NOT A VALID WORD" << endl;
} else {
cout << "NOT A VALID WORD" << endl;
}
cout << "******" << endl;
cin >> str;
}
return 0;
}
int getKey(const string& str) {
int hash = 0;
for (char const &c : str) {
hash += c;
}
return hash;
}
bool areAnagrams(const string& str1, const string& str2) {
int n1 = str1.length();
int n2 = str2.length();
if (n1 != n2) {
return false;
}
string x(str1);
string y(str2);
sort(x.begin(), x.end());
sort(y.begin(), y.end());
for (int i = 0; i < n1; i++) {
if (x[i] != y[i])
return false;
}
return true;
}