-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpart_2.py
100 lines (73 loc) · 2.26 KB
/
part_2.py
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
import os
import time
import datetime
import re
__test = True
__baseDir = os.path.dirname(__file__)
__testSet = [
[os.path.join(__baseDir, "example_input.txt"), 123]
]
__inputFile = os.path.join(__baseDir, 'input.txt')
def swap(list, indexes):
tmp = list[indexes[0]]
list[indexes[0]] = list[indexes[1]]
list[indexes[1]] = tmp
def checkUpdate(update, rules):
for rule in rules:
ruleLeft: int
ruleRight: int
try:
ruleLeft = update.index(rule[0])
except ValueError as e:
continue
try:
ruleRight = update.index(rule[1])
except ValueError as e:
continue
if ruleLeft > ruleRight:
return [ruleLeft, ruleRight]
return True
def solve(input):
solution = 0
rules = []
updates = []
for line in input:
if line == '\n':
continue
if line.find('|') < 0:
updates.append(list(map(int, re.findall(r'\d+', line))))
else:
rules.append(list(map(int, re.findall(r'\d+', line))))
for update in updates:
indexes = checkUpdate(update, rules)
if type(indexes) == bool:
continue
while type(indexes) != bool:
swap(update, indexes)
indexes = checkUpdate(update, rules)
solution += update[int(len(update)/2)]
return solution
def test(testSet):
for i, [testInputFile, solution] in enumerate(testSet, 1):
try:
testInput = open(testInputFile, 'r')
except FileNotFoundError as e:
raise(e)
if solve(testInput) != solution:
raise RuntimeError(f'Test {i} failed!')
else:
yield f'Test {i} passed'
if __test:
__startTime = time.time()
for msg in test(__testSet):
print(msg)
__runTime = datetime.datetime.fromtimestamp(time.time()-__startTime).strftime('%S.%fs')
print(f'Tests completed succesfully in: {__runTime}\n{'='*45}')
try:
input = open(__inputFile, 'r')
except FileNotFoundError as e:
raise (e)
__startTime = time.time()
solution = solve(input)
__runTime = datetime.datetime.fromtimestamp(time.time()-__startTime).strftime('%S.%fs')
print(f'Solution for the puzzle: {solution}\nElapsed time: {__runTime}')