This repository was archived by the owner on Nov 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAnagramFinder.cs
362 lines (311 loc) · 14.1 KB
/
AnagramFinder.cs
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Security.Cryptography;
using System.Text;
namespace followthewhiterabbit
{
/// <summary>
/// Special operation class that finds anagram phrases
/// </summary>
public class AnagramFinder : IDisposable
{
private MD5 md5;
private HashSet<string> resultsToLookFor;
private WordManager manager;
public AnagramFinder(WordManager words, params string[] hashes)
{
manager = words;
md5 = MD5.Create();
}
/// <summary>
/// Finds anagrams that produce the given hashes with the hardcoded phrase
/// </summary>
/// <param name="hashes">Hashes to look for</param>
public void FindAnagrams(params string[] hashes)
{
resultsToLookFor = new HashSet<string>();
foreach (string hash in hashes)
{
resultsToLookFor.Add(hash);
}
Stopwatch sw = new Stopwatch();
try
{
FindAnagramResult_2W(sw);
sw.Stop();
FindAnagramResult_3W(sw);
sw.Stop();
FindAnagramResult_4W(sw);
}
catch (Exception ex)
{
if (ex.Message != "BREAK-LOOPS")
throw ex;
else
Console.WriteLine();
}
if (resultsToLookFor.Count == 0)
{
Console.WriteLine("All answers are found so stopped pushing through, would run around for 5 minutes otherwise...");
}
}
private void FindAnagramResult_2W(Stopwatch sw)
{
IDictionary<int, WordNode> combinations = new Dictionary<int, WordNode>();
try
{
sw.Start();
Console.WriteLine("Looking at 2 word anagrams...");
// step 1, pick A
foreach (Word word in manager.Words.Values)
{
// picking A, 9+ only
if (word.Power < 9)
continue;
combinations.Add(word.Code, new WordNode(word));
}
// step 2, pick B
foreach (KeyValuePair<int, WordNode> wordInfo in combinations)
{
int max = WordManager.Max;
// current holds B
int current = WordManager.SubtractCode(max, wordInfo.Key);
if (!manager.Words.ContainsKey(current))
continue;
wordInfo.Value.ChildNodes.Add(current, new WordNode(manager.Words[current]));
}
Permutation permof2Words = new Permutation(2);
// brute force build sentences, too lazy to check in a sophisticated manner as remaining result set is not huge
foreach (WordNode nodeA in combinations.Values)
{
foreach (WordNode nodeB in nodeA.ChildNodes.Values)
{
foreach (string wordA in nodeA.WordRef.Words)
{
foreach (string wordB in nodeB.WordRef.Words)
{
// build sentences and get hashcode
CalculateHashOfSentencePermutations(permof2Words, wordA, wordB);
}
}
}
}
}
finally
{
Console.WriteLine("Looking at 2 word anagrams... took {0}", sw.Elapsed.ToString());
}
}
private void FindAnagramResult_3W(Stopwatch sw)
{
IDictionary<int, WordNode> combinations = new Dictionary<int, WordNode>();
try
{
sw.Start();
Console.WriteLine("Looking at 3 word anagrams...");
// step 1, pick A
foreach (Word word in manager.Words.Values)
{
// picking A, 6+ only
if (word.Power < 6)
continue;
combinations.Add(word.Code, new WordNode(word));
}
// step 2, pick B
foreach (KeyValuePair<int, WordNode> wordInfo in combinations)
{
int max = WordManager.Max;
// current holds potential of B and C
int current = WordManager.SubtractCode(max, wordInfo.Key);
int powerofA = WordManager.PowerOfWordCode(wordInfo.Key);
int maxpowerofB = Math.Min(powerofA, max - powerofA);
int minpowerofB = Convert.ToInt32(Math.Ceiling(((float)(WordManager.MaxPower - powerofA)) / 2));
foreach (int possibleB in manager.FindWords(current, maxpowerofB, minpowerofB))
{
wordInfo.Value.ChildNodes.Add(possibleB, new WordNode(manager.Words[possibleB]));
}
}
// step 3.a, filter out invalid combinations of A+B, A+B left no possible C, check will allow possible A+B without a C
foreach (int wordA in combinations.Keys)
{
WordNode possibleB = combinations[wordA];
foreach (int wordB in possibleB.ChildNodes.Keys.ToArray())
{
int max = WordManager.Max;
int temp = WordManager.SubtractCode(max, wordA);
temp = WordManager.SubtractCode(temp, wordB);
if (!manager.Words.ContainsKey(temp))
possibleB.ChildNodes.Remove(wordB);
int powerA = WordManager.PowerOfWordCode(wordA);
int powerB = WordManager.PowerOfWordCode(wordB);
int powerC = WordManager.PowerOfWordCode(temp);
// if total length is not 18 then we missed letters in anagram, lets fail with exc
if (powerA + powerB + powerC != WordManager.MaxPower)
throw new InvalidOperationException("Algorithm has a length bug! Words A B C cannot make 18 characters");
}
}
// step 3.b, filter out invalid combinations of A+B, A has no B because it used all good letters perhaps
foreach (int key in combinations.Keys.ToArray())
{
if (combinations[key].ChildNodes.Count == 0)
combinations.Remove(key);
}
Permutation permof3Words = new Permutation(3);
// brute force build sentences, too lazy to check in a sophisticated manner as remaining result set is not huge
foreach (WordNode nodeA in combinations.Values)
{
foreach (WordNode nodeB in nodeA.ChildNodes.Values)
{
int max = WordManager.Max;
int codeC = WordManager.SubtractCode(max, nodeA.WordRef.Code);
codeC = WordManager.SubtractCode(codeC, nodeB.WordRef.Code);
foreach (string wordA in nodeA.WordRef.Words)
{
foreach (string wordB in nodeB.WordRef.Words)
{
foreach (string wordC in manager.Words[codeC].Words)
{
// build sentences and get hashcode
CalculateHashOfSentencePermutations(permof3Words, wordA, wordB, wordC);
}
}
}
}
}
}
finally
{
Console.WriteLine("Looking at 3 word anagrams... took {0}", sw.Elapsed.ToString());
}
}
private void FindAnagramResult_4W(Stopwatch sw)
{
IDictionary<int, WordNode> combinations = new Dictionary<int, WordNode>();
try
{
sw.Start();
Console.WriteLine("Looking at 4 word anagrams...");
// step 1, pick A
foreach (Word word in manager.Words.Values)
{
// picking A, 5+ only
if (word.Power < 5)
continue;
combinations.Add(word.Code, new WordNode(word));
}
// step 2, pick B for every A
foreach (WordNode nodeA in combinations.Values)
{
int max = WordManager.Max;
// current holds potential of B+C+D
int current = WordManager.SubtractCode(max, nodeA.WordRef.Code);
int powerofA = WordManager.PowerOfWordCode(nodeA.WordRef.Code);
int maxpowerofB = Math.Min(powerofA, WordManager.MaxPower - powerofA);
int minpowerofB = Convert.ToInt32(Math.Ceiling(((float)(WordManager.MaxPower - powerofA)) / 3));
foreach (int possibleB in manager.FindWords(current, maxpowerofB, minpowerofB))
{
nodeA.ChildNodes.Add(possibleB, new WordNode(manager.Words[possibleB]));
}
}
// step 3, pick C for every A + B
foreach (WordNode nodeA in combinations.Values)
{
foreach (WordNode nodeB in nodeA.ChildNodes.Values)
{
int max = WordManager.Max;
// current holds potential of C+D
int current = WordManager.SubtractCode(max, nodeA.WordRef.Code);
current = WordManager.SubtractCode(current, nodeB.WordRef.Code);
int currentpower = WordManager.PowerOfWordCode(current);
int powerofB = WordManager.PowerOfWordCode(nodeB.WordRef.Code);
int maxpowerofC = Math.Min(powerofB, WordManager.MaxPower - powerofB);
int minpowerofC = Convert.ToInt32(Math.Ceiling(((float)currentpower) / 2));
foreach (int possibleC in manager.FindWords(current, maxpowerofC, minpowerofC))
{
// prevents 3W sentences
if (possibleC == current)
continue;
nodeB.ChildNodes.Add(possibleC, new WordNode(manager.Words[possibleC]));
}
}
}
Permutation permof4Words = new Permutation(4);
// brute force 4 word sentence hash checking
foreach (WordNode nodeA in combinations.Values)
{
foreach (WordNode nodeB in nodeA.ChildNodes.Values)
{
foreach (WordNode nodeC in nodeB.ChildNodes.Values)
{
int temp = WordManager.Max;
temp = WordManager.SubtractCode(temp, nodeA.WordRef.Code);
temp = WordManager.SubtractCode(temp, nodeB.WordRef.Code);
temp = WordManager.SubtractCode(temp, nodeC.WordRef.Code);
// not interested in 3W
if (temp == 0)
continue;
// A+B+C left no D available
if (!manager.Words.ContainsKey(temp))
continue;
foreach (string wordA in nodeA.WordRef.Words)
{
foreach (string wordB in nodeB.WordRef.Words)
{
foreach (string wordC in nodeC.WordRef.Words)
{
foreach (string wordD in manager.Words[temp].Words)
{
CalculateHashOfSentencePermutations(permof4Words, wordA, wordB, wordC, wordD);
}
}
}
}
}
}
}
}
finally
{
Console.WriteLine("Looking at 4 word anagrams... took {0}", sw.Elapsed.ToString());
}
}
private string CalculateHash(string sentence)
{
byte[] inputBytes = System.Text.Encoding.UTF8.GetBytes(sentence);
byte[] hash = md5.ComputeHash(inputBytes);
StringBuilder sb = new StringBuilder();
for (int i = 0; i < hash.Length; i++)
{
sb.Append(hash[i].ToString("X2"));
}
string value = sb.ToString().ToLower();
if (resultsToLookFor.Contains(value))
{
Console.WriteLine(" # Found answer: {0} : \"{1}\"", value, sentence);
resultsToLookFor.Remove(value);
if (resultsToLookFor.Count == 0)
throw new Exception("BREAK-LOOPS");
}
return value;
}
private void CalculateHashOfSentencePermutations(Permutation perm, params string[] words)
{
foreach (int[] permRes in perm.Results)
{
string sentenceFormat = "";
foreach (int e in permRes)
{
sentenceFormat = string.Format("{1} {{{0}}}", e, sentenceFormat);
}
string sentence = string.Format(sentenceFormat.Trim(), words);
CalculateHash(sentence);
}
}
void IDisposable.Dispose()
{
md5.Dispose();
}
}
}