namespace WhiteRabbit { using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Configuration; using System.Diagnostics; using System.Linq; using System.Numerics; using System.Text; using Org.BouncyCastle.Crypto.Digests; /// /// Main class /// public static class Program { /// /// Main entry point /// public static void Main() { var stopwatch = new Stopwatch(); stopwatch.Start(); var sourcePhrase = ConfigurationManager.AppSettings["SourcePhrase"]; var sourceChars = ToOrderedChars(sourcePhrase); var maxWordsInPhrase = int.Parse(ConfigurationManager.AppSettings["MaxWordsInPhrase"]); var allowWordsReuse = bool.Parse(ConfigurationManager.AppSettings["AllowWordsReuse"]); var expectedHashesAsVectors = ConfigurationManager.AppSettings["ExpectedHashes"] .Split(',') .Select(hash => new Vector(HexadecimalStringToByteArray(hash))) .ToArray(); #if DEBUG var anagramsBag = new ConcurrentBag(); #endif var processor = new StringsProcessor( Encoding.ASCII.GetBytes(sourcePhrase), maxWordsInPhrase, allowWordsReuse, ReadInput()); Console.WriteLine($"Initialization complete; time from start: {stopwatch.Elapsed}"); processor.GeneratePhrases() .ForAll(phraseBytes => { Debug.Assert( sourceChars == ToOrderedChars(Encoding.ASCII.GetString(phraseBytes)), $"StringsProcessor produced incorrect anagram: {Encoding.ASCII.GetString(phraseBytes)}"); Console.WriteLine(Encoding.ASCII.GetString(phraseBytes)); /*var hashVector = ComputeHashVector(phraseBytes); if (Array.IndexOf(expectedHashesAsVectors, hashVector) >= 0) { var phrase = Encoding.ASCII.GetString(phraseBytes); var hash = VectorToHexadecimalString(hashVector); Console.WriteLine($"Found phrase for {hash}: {phrase}; time from start is {stopwatch.Elapsed}"); }*/ #if DEBUG anagramsBag.Add(Encoding.ASCII.GetString(phraseBytes)); #endif }); Console.WriteLine($"Done; time from start: {stopwatch.Elapsed}"); #if DEBUG var anagramsArray = anagramsBag.ToArray(); var anagramsSet = new HashSet(anagramsArray); Array.Sort(anagramsArray); Console.WriteLine("All anagrams:"); for (var i = 0; i < anagramsArray.Length; i++) { Console.WriteLine(anagramsArray[i]); } // Duplicate anagrams are expected, as e.g. "norway spoils tut tut" will be taken twice: // as "norway1 spoils2 tut3 tut4" and "norway1 spoils2 tut4 tut3" // (in addition to e.g. "norway1 tut3 spoils2 tut4") Console.WriteLine($"Total anagrams count: {anagramsArray.Length}; unique anagrams: {anagramsSet.Count}; time from start: {stopwatch.Elapsed}"); #endif } // Code taken from http://stackoverflow.com/a/321404/831314 private static byte[] HexadecimalStringToByteArray(string hex) { return Enumerable.Range(0, hex.Length) .Where(x => x % 2 == 0) .Select(x => Convert.ToByte(hex.Substring(x, 2), 16)) .ToArray(); } // Bouncy Castle is used instead of standard .NET methods for performance reasons private static Vector ComputeHashVector(byte[] input) { var digest = new MD5Digest(); digest.BlockUpdate(input, 0, input.Length); byte[] hash = new byte[16]; digest.DoFinal(hash, 0); return new Vector(hash); } private static string VectorToHexadecimalString(Vector hash) { return string.Concat(Enumerable.Range(0, 16).Select(i => hash[i].ToString("x2"))); } private static IEnumerable ReadInput() { string line; while ((line = Console.ReadLine()) != null) { if (line.Length == 1 && line != "a" && line != "i") { continue; } yield return Encoding.ASCII.GetBytes(line); } } private static string ToOrderedChars(string source) { return new string(source.Where(ch => ch != ' ').OrderBy(ch => ch).ToArray()); } #if SINGLE_THREADED private static void ForAll(this IEnumerable source, Action action) { foreach (var entry in source) { action(entry); } } #endif } }