-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path12.py
103 lines (88 loc) · 2.78 KB
/
12.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
101
102
103
def data(filename):
data = []
for line in open(filename):
data.append(line.strip())
def neighbors(x, y, data, visited, want):
neighbors = []
if x > 0 and (x - 1, y) not in visited and data[x - 1][y] == want:
neighbors.append((x - 1, y))
if y > 0 and (x, y - 1) not in visited and data[x][y - 1] == want:
neighbors.append((x, y - 1))
if x < len(data) - 1 and (x + 1, y) not in visited and data[x + 1][y] == want:
neighbors.append((x + 1, y))
if (
y < len(data[0]) - 1
and (x, y + 1) not in visited
and data[x][y + 1] == want
):
neighbors.append((x, y + 1))
return neighbors
regions = []
globalvisited = set()
for i in range(len(data)):
for j in range(len(data[i])):
curr = data[i][j]
if (i, j) in globalvisited:
continue
# new region
visited = set()
stack = [(i, j)]
while stack:
x, y = stack.pop()
if (x, y) in visited:
continue
visited.add((x, y))
globalvisited.add((x, y))
for n in neighbors(x, y, data, visited, curr):
stack.append(n)
regions.append(visited)
return regions
def part1(filename):
regions = data(filename)
def num_neighbors(x, y, visited):
res = 0
for nx, ny in visited:
diff = abs(x - nx) + abs(y - ny)
if diff == 1:
res += 1
return res
def get_perimeter(region):
res = 0
for x, y in region:
res += 4 - num_neighbors(x, y, region)
return res
total = 0
for r in regions:
total += get_perimeter(r) * len(r)
print("Part 1 for ", filename, "is", total)
def part2(filename):
regions = data(filename)
res = 0
for r in regions:
fences = []
for x, y in r:
neighbors = [
(x - 1, y, "up"),
(x + 1, y, "down"),
(x, y - 1, "left"),
(x, y + 1, "right"),
]
for nx, ny, direction in neighbors:
if (nx, ny) not in r:
fences.append((x, y, direction))
counter = 0
for x, y, dir in fences:
if (x - 1, y, dir) not in fences:
counter += 1
else:
counter -= 1
if (x, y - 1, dir) not in fences:
counter += 1
else:
counter -= 1
res += len(r) * int(counter / 2)
print("Part 2 for ", filename, "is", res)
part1("data/12demo.txt")
part1("data/12.txt")
part2("data/12demo.txt")
part2("data/12.txt")