-
Notifications
You must be signed in to change notification settings - Fork 0
/
microban_very_heavy.txt
8655 lines (7562 loc) · 160 KB
/
microban_very_heavy.txt
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
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
8 cores
6400m memory
20M hashset limit
result: 18 timeout, 5 noSolution
Level #1 [cells 16, boxes 1, alive 6, complexity 6.1]
######
#@ #
# $ #
# #
# . #
######
[set 5, closed 2, open 0]
Found solution in 2 pushes.
FrozenBoxes 0
Level #2 [cells 99, boxes 5, alive 90, complexity 26.6]
###########
#@ #
#$#$#$#$#$#
# # # # # #
# # # # # #
# # # # # #
# # # # # #
# # # # # #
# # # # # #
# # # # # #
# # # # # #
# # # # # #
# # # # # #
# # # # # #
# # # # # #
# # # # # #
# # # # # #
# # # # # #
# # # # # #
#.#.#.#.#.#
###########
[set 544, closed 137, open 405]
Found solution in 85 pushes.
FrozenBoxes 86
Level #3 [cells 163, boxes 8, alive 152, complexity 39.4]
#############
#@ #
#$$#$$#$$#$$#
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
#..#..#..#..#
#############
[set 4.7K, closed 571, open 4.1K]
Found solution in 144 pushes.
FrozenBoxes 8
Level #4 [cells 164, boxes 8, alive 136, complexity 38.4]
#############
#@ # #
##$#$$#$$# #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# $# $# $# #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# # # # #
# ........#
#############
[set 5.6K, closed 547, open 5.0K]
Found solution in 139 pushes.
FrozenBoxes 25
Level #5 [cells 14, boxes 2, alive 9, complexity 8.0]
####
# .#
# ###
#*@ #
# $ #
# ###
####
[set 16, closed 13, open 1]
Found solution in 8 pushes.
FrozenBoxes 8
Level #6 [cells 19, boxes 3, alive 5, complexity 5.8]
######
# #
# #@ #
# $* #
# .* #
# #
######
[set 7, closed 3, open 2]
Found solution in 3 pushes.
FrozenBoxes 5
Level #7 [cells 20, boxes 2, alive 11, complexity 9.1]
####
### ####
# $ #
# # #$ #
# . .#@ #
#########
[set 65, closed 62, open 1]
Found solution in 13 pushes.
FrozenBoxes 30
Level #8 [cells 20, boxes 3, alive 8, complexity 8.5]
########
# #
# .**$@#
# #
##### #
####
[set 45, closed 34, open 9]
Found solution in 7 pushes.
FrozenBoxes 23
Level #9 [cells 27, boxes 4, alive 12, complexity 11.4]
#######
# #
# .$. #
## $@$ #
# .$. #
# #
########
[set 134, closed 28, open 100]
Found solution in 6 pushes.
FrozenBoxes 10
Level #10 [cells 28, boxes 3, alive 14, complexity 11.5]
###### #####
# ### #
# $$ #@#
# $ #... #
# ########
#####
[set 242, closed 172, open 67]
Found solution in 29 pushes.
FrozenBoxes 49
Level #11 [cells 30, boxes 6, alive 12, complexity 11.8]
#######
# #
# .$. #
# $.$ #
# .$. #
# $.$ #
# @ #
#######
[set 322, closed 74, open 238]
Found solution in 6 pushes.
FrozenBoxes 55
Level #12 [cells 27, boxes 2, alive 15, complexity 10.4]
######
# ..@#
# $$ #
## ###
# #
# #
#### #
# ##
# # #
# # #
### #
#####
[set 119, closed 117, open 0]
Found solution in 32 pushes.
FrozenBoxes 15
Level #13 [cells 13, boxes 2, alive 8, complexity 7.5]
#####
#. ##
#@$$ #
## #
## #
##.#
###
[set 16, closed 13, open 1]
Found solution in 10 pushes.
FrozenBoxes 2
Level #14 [cells 27, boxes 3, alive 14, complexity 11.5]
#####
#. #
#.# #
#######.# #
# @ $ $ $ #
# # # # ###
# #
#########
[set 109, closed 105, open 2]
Found solution in 21 pushes.
FrozenBoxes 55
Level #15 [cells 25, boxes 2, alive 13, complexity 9.9]
######
# #
# ##@##
### # $ #
# ..# $ #
# #
# ######
####
[set 71, closed 56, open 12]
Found solution in 16 pushes.
FrozenBoxes 23
Level #16 [cells 23, boxes 2, alive 9, complexity 8.6]
#####
# ##
# $ #
## $ ####
###@. #
# .# #
# #
#######
[set 27, closed 20, open 3]
Found solution in 13 pushes.
FrozenBoxes 14
Level #17 [cells 20, boxes 3, alive 14, complexity 11.1]
####
#. ##
#.@ #
#. $#
##$ ###
# $ #
# #
# ###
####
[set 111, closed 78, open 31]
Found solution in 21 pushes.
FrozenBoxes 22
Level #18 [cells 16, boxes 2, alive 6, complexity 6.7]
#######
# #
# # # #
#. $*@#
# ###
#####
[set 14, closed 12, open 0]
Found solution in 10 pushes.
FrozenBoxes 1
Level #19 [cells 19, boxes 2, alive 8, complexity 8.0]
###
######@##
# .* #
# # #
#####$# #
# #
#####
[set 32, closed 30, open 0]
Found solution in 14 pushes.
FrozenBoxes 4
Level #20 [cells 31, boxes 3, alive 21, complexity 13.4]
####
# ####
# ##
## ## #
#. .# @$##
# # $$ #
# .# #
##########
[set 273, closed 171, open 100]
Found solution in 39 pushes.
FrozenBoxes 80
Level #21 [cells 17, boxes 3, alive 9, complexity 8.9]
#####
# @ #
#...#
#$$$##
# #
# #
######
[set 31, closed 21, open 8]
Found solution in 9 pushes.
FrozenBoxes 7
Level #22 [cells 22, boxes 2, alive 13, complexity 9.8]
#######
# #
#. . #
# ## ##
# $ #
###$ #
#@ #
# #
####
[set 55, closed 39, open 13]
Found solution in 13 pushes.
FrozenBoxes 5
Level #23 [cells 19, boxes 2, alive 11, complexity 9.0]
########
# .. #
# @$$ #
##### ##
# #
# #
# #
####
[set 64, closed 59, open 3]
Found solution in 20 pushes.
FrozenBoxes 6
Level #24 [cells 23, boxes 2, alive 12, complexity 9.5]
#######
# ###
# @$$..#
#### ## #
# #
# ####
# #
####
[set 65, closed 61, open 2]
Found solution in 16 pushes.
FrozenBoxes 13
Level #25 [cells 15, boxes 2, alive 5, complexity 6.0]
####
# ####
# . . #
# $$#@#
## #
######
[set 9, closed 6, open 0]
Found solution in 5 pushes.
FrozenBoxes 1
Level #26 [cells 25, boxes 2, alive 12, complexity 9.6]
#####
# ###
#. . #
# # #
## # #
#@$$ #
# #
# ###
####
[set 65, closed 59, open 4]
Found solution in 15 pushes.
FrozenBoxes 14
Level #27 [cells 18, boxes 2, alive 11, complexity 9.0]
#######
# * #
# #
## # ##
#$@.#
# #
#####
[set 19, closed 16, open 1]
Found solution in 10 pushes.
FrozenBoxes 9
Level #28 [cells 19, boxes 2, alive 9, complexity 8.4]
#####
# #
###$$@#
# ###
# #
# . . #
#######
[set 38, closed 36, open 0]
Found solution in 9 pushes.
FrozenBoxes 24
Level #29 [cells 18, boxes 3, alive 9, complexity 8.9]
####
# ###
# $$ #
##... #
# @$ #
# ###
#####
[set 37, closed 26, open 6]
Found solution in 7 pushes.
FrozenBoxes 27
Level #30 [cells 18, boxes 3, alive 10, complexity 9.4]
#####
# @ #
# #
###$ #
# ...#
# $$ #
### #
####
[set 78, closed 73, open 3]
Found solution in 10 pushes.
FrozenBoxes 45
Level #31 [cells 18, boxes 2, alive 14, complexity 9.8]
######
# .#
# ## ##
# $$@#
# # #
#. ###
#####
[set 41, closed 39, open 0]
Found solution in 12 pushes.
FrozenBoxes 11
Level #32 [cells 17, boxes 2, alive 7, complexity 7.4]
#####
# #
# @ #
# $$###
##. . #
# #
######
[set 23, closed 20, open 0]
Found solution in 9 pushes.
FrozenBoxes 5
Level #33 [cells 35, boxes 2, alive 12, complexity 10.0]
#####
# ##
# #
###### #
## #. #
# $ $ @ ##
# ######.#
# #
##########
[set 74, closed 72, open 0]
Found solution in 22 pushes.
FrozenBoxes 23
Level #34 [cells 17, boxes 3, alive 9, complexity 8.9]
####
# ###
# $$ #
#... #
# @$ #
# ##
#####
[set 23, closed 10, open 8]
Found solution in 5 pushes.
FrozenBoxes 15
Level #35 [cells 18, boxes 3, alive 8, complexity 8.3]
####
## #
##@$.##
# $$ #
# . . #
### #
#####
[set 53, closed 34, open 15]
Found solution in 6 pushes.
FrozenBoxes 35
Level #36 [cells 17, boxes 3, alive 9, complexity 8.9]
####
## ###
# #
#.**$@#
# ###
## #
####
[set 27, closed 23, open 2]
Found solution in 9 pushes.
FrozenBoxes 16
Level #37 [cells 22, boxes 3, alive 13, complexity 10.9]
#######
#. # #
# $ #
#. $#@#
# $ #
#. # #
#######
[set 83, closed 35, open 46]
Found solution in 10 pushes.
FrozenBoxes 16
Level #38 [cells 23, boxes 4, alive 10, complexity 10.1]
####
### ####
# #
#@$***. #
# #
#########
[set 103, closed 37, open 63]
Found solution in 8 pushes.
FrozenBoxes 37
Level #39 [cells 24, boxes 5, alive 17, complexity 14.2]
####
## #
#. $#
#.$ #
#.$ #
#.$ #
#. $##
# @#
## #
#####
[set 207, closed 131, open 73]
Found solution in 31 pushes.
FrozenBoxes 225
Level #40 [cells 28, boxes 5, alive 22, complexity 16.1]
####
# ############
# $ $ $ $ $ @ #
# ..... #
###############
[set 16.4K, closed 16.1K, open 330]
Found solution in 61 pushes.
FrozenBoxes 11.8K
Level #41 [cells 23, boxes 3, alive 14, complexity 11.3]
###
##### #.#
# ###.#
# $ #.#
# $ $ #
#####@# #
# #
#####
[set 154, closed 87, open 65]
Found solution in 23 pushes.
FrozenBoxes 51
Level #42 [cells 28, boxes 3, alive 9, complexity 9.4]
##########
# #
# ##.### #
# # $$ . #
# . @$## #
##### #
######
[set 34, closed 18, open 12]
Found solution in 8 pushes.
FrozenBoxes 8
Level #43 [cells 30, boxes 2, alive 14, complexity 10.3]
#####
# ####
# # # .#
# $ ###
### #$. #
# #@ #
# # ######
# #
#####
[set 102, closed 97, open 3]
Found solution in 27 pushes.
FrozenBoxes 8
Level #44 [cells 16, boxes 3, alive 9, complexity 8.8]
#####
# #
## ##
# $$$ #
# .+. #
#######
[set 38, closed 13, open 23]
Found solution in 7 pushes.
FrozenBoxes 2
Level #45 [cells 19, boxes 3, alive 8, complexity 8.4]
#######
# #
#@$$$ ##
# #...#
## ##
######
[set 44, closed 30, open 12]
Found solution in 13 pushes.
FrozenBoxes 5
Level #46 [cells 19, boxes 3, alive 11, complexity 10.0]
####
# #
#@ #
####$.#
# $.#
# # $.#
# ##
######
[set 145, closed 129, open 13]
Found solution in 15 pushes.
FrozenBoxes 36
Level #47 [cells 25, boxes 3, alive 17, complexity 12.3]
####
# @#
# #
###### .#
# $ .#
# $$# .#
# ####
### #
####
[set 225, closed 175, open 48]
Found solution in 22 pushes.
FrozenBoxes 79
Level #48 [cells 3, boxes 1, alive 2, complexity 1.4]
#####
#@$.#
#####
[set 2, closed 0, open 0]
Found solution in 1 pushes.
FrozenBoxes 0
Level #49 [cells 18, boxes 3, alive 11, complexity 9.9]
######
#... #
# $ #
# #$##
# $ #
# @ #
######
[set 52, closed 39, open 11]
Found solution in 11 pushes.
FrozenBoxes 15
Level #50 [cells 21, boxes 2, alive 9, complexity 8.5]
######
## #
# ## #
# # $ #
# * .#
## #@##
# #
#####
[set 17, closed 15, open 0]
Found solution in 8 pushes.
FrozenBoxes 6
Level #51 [cells 29, boxes 2, alive 13, complexity 10.1]
#######
### #
# $ $ #
# ### #####
# @ . . #
# ### #
##### #####
[set 89, closed 82, open 4]
Found solution in 22 pushes.
FrozenBoxes 11
Level #52 [cells 25, boxes 3, alive 11, complexity 10.3]
######
# @ #
# # ##
# .# ##
# .$$$ #
# .# #
#### #
#####
[set 105, closed 83, open 20]
Found solution in 14 pushes.
FrozenBoxes 48
Level #53 [cells 29, boxes 3, alive 11, complexity 10.4]
######
# @ #
# $# #
# $ #
# $ ##
### ####
# # #
#... #
# #
#######
[set 166, closed 147, open 17]
Found solution in 21 pushes.
FrozenBoxes 42
Level #54 [cells 25, boxes 2, alive 14, complexity 10.1]
####
### #####
# $ @..#
# $ # #
### #### #
# #
########
[set 61, closed 59, open 0]
Found solution in 17 pushes.
FrozenBoxes 12
Level #55 [cells 19, boxes 2, alive 8, complexity 8.0]
####
# ###
# ###
# $*@ #
### .# #
# #
######
[set 25, closed 15, open 7]
Found solution in 8 pushes.
FrozenBoxes 2
Level #56 [cells 20, boxes 4, alive 12, complexity 11.1]
####
### @#
# $ #
# *.#
# *.#
# $ #
### #
####
[set 103, closed 41, open 60]
Found solution in 8 pushes.
FrozenBoxes 24
Level #57 [cells 20, boxes 4, alive 11, complexity 10.5]
#####
##. .##
# * * #
# # #
# $ $ #
## @ ##
#####
[set 111, closed 79, open 29]
Found solution in 14 pushes.
FrozenBoxes 52
Level #58 [cells 34, boxes 4, alive 17, complexity 13.7]
######
# #
##### . #
### ###. #
# $ $ . ##
# @$$ # . #
## #####
######
[set 1.4K, closed 929, open 462]
Found solution in 30 pushes.
FrozenBoxes 503
Level #59 [cells 21, boxes 2, alive 13, complexity 9.7]
########
# @ # #
# #
#####$ #
# ###
#$ ..#
# ###
####
[set 100, closed 98, open 0]
Found solution in 27 pushes.
FrozenBoxes 14
Level #60 [cells 16, boxes 2, alive 6, complexity 6.7]
#####
# ###
# $ #
##* . #
# @#
######
[set 12, closed 7, open 1]
Found solution in 6 pushes.
FrozenBoxes 9
Level #61 [cells 21, boxes 2, alive 12, complexity 9.4]
####
# #
#@ #
# #
### ####
# * #
# $ #
#####. #
####
[set 84, closed 79, open 3]
Found solution in 23 pushes.
FrozenBoxes 25
Level #62 [cells 18, boxes 3, alive 9, complexity 8.9]
####
# ####
#.*$ #
# .$# #
## @ #
# ##
#####
[set 41, closed 28, open 11]
Found solution in 11 pushes.
FrozenBoxes 20
Level #63 [cells 48, boxes 3, alive 24, complexity 14.5]
############
# #
# ####### @##
# # #
# # $ # #
# $$ ##### #
### # # ...#
#### # #
######
[set 1.3K, closed 828, open 425]
Found solution in 50 pushes.
FrozenBoxes 261
Level #64 [cells 42, boxes 4, alive 20, complexity 14.9]
#########
# #
##@##### #
# # # #
# # $.#
# ##$##.#
##$## #.#
# $ #.#
# # ###
########
[set 676, closed 488, open 186]
Found solution in 44 pushes.
FrozenBoxes 121
Level #65 [cells 32, boxes 4, alive 15, complexity 12.9]
########
# #
# #### #
# #...@#
# ###$###
# # #
# $$ $ #
#### ##
#.###
###
[set 137, closed 99, open 36]
Found solution in 23 pushes.
FrozenBoxes 43
Level #66 [cells 28, boxes 4, alive 13, complexity 11.9]
##########
#### ## #
# $$$....$@#
# ### #
# #### ####
#####
[set 194, closed 114, open 78]
Found solution in 30 pushes.
FrozenBoxes 112
Level #67 [cells 33, boxes 2, alive 20, complexity 11.6]
##### ####
# ##### .#
# $ ########
### #### .$ @ #
# # # #### #
#### #### #####
[set 218, closed 208, open 8]
Found solution in 50 pushes.
FrozenBoxes 17
Level #68 [cells 27, boxes 4, alive 13, complexity 11.9]
######
## #
# $ #
# $$ #
### .#####
##.# @ #
#. $ #
#. ####
####
[set 245, closed 215, open 27]
Found solution in 30 pushes.
FrozenBoxes 64
Level #69 [cells 32, boxes 4, alive 19, complexity 14.3]
######
# #
# $ #
####$ #
## $ $ #
#....# ##
# @ #
## # #
########
[set 908, closed 404, open 499]
Found solution in 41 pushes.
FrozenBoxes 137
Level #70 [cells 46, boxes 3, alive 18, complexity 13.2]
###
#@#
###$###
## . ##
# # # #
# # # #
# # # #
# # # #
# # # #
## $ $ ##
##. .##
# #
# #
#####
[set 199, closed 107, open 87]
Found solution in 15 pushes.
FrozenBoxes 89