-
Notifications
You must be signed in to change notification settings - Fork 0
/
solve.cpp
63 lines (56 loc) · 1.16 KB
/
solve.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 "common.hpp"
//{ 12210,15594,18592,47466,23526,48987,44863,19536,52633,21435,34703,5383,16355,46571,59850,35352,16108,38178,50671,64648 };
#include "solve.h"
std::vector<std::pair<Word, Word>> pairs = {
{ 46797,26174 },
{ 33355,8806 },
{ 12127,30892 },
{ 36367,9717 },
{ 44727,24673 },
{ 3529,47408 },
{ 31925,20694 },
{ 28137,56468 },
{ 52803,52774 },
{ 44410,46131 },
{ 45425,12595 },
{ 54554,26552 },
{ 12635,58598 },
{ 12932,46831 },
{ 8597,32794 },
{ 62968,279 },
{ 26520,54428 },
{ 13693,32325 },
{ 49153,21047 },
{ 11475,62360 }};
/*
{ { 16529 , 60882 },
{ 37511 , 54886 },
{ 45294 , 6783 },
{ 11844 , 60112 },
{ 19162 , 53916 },
{ 41181 , 16409 },
{ 60950 , 933 },
{ 61426 , 29031 },
{ 21752 , 13295 },
{ 14724 , 26178 },
{ 14099 , 26696 },
{ 37573 , 62630 },
{ 31813 , 52180 },
{ 18719 , 43540 },
{ 2876 , 6016 },
{ 63271 , 19354 },
{ 1938 , 26088 },
{ 32696 , 58634 },
{ 16855 , 56030 },
{ 1501 , 45030 }
};
*/
int main()
{
Word temp[21] = {12210, 15594, 18592, 47466, 23526, 48987, 44863, 19536, 52633, 21435, 34703, 5383, 16355, 46571, 59850, 35352, 16108, 38178, 50671, 64648};
for (int i = 0; i < 21; i++)
{
flag[i] = temp[i];
}
crack(pairs);
}