-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path23.py
75 lines (72 loc) · 2.59 KB
/
23.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
from collections import defaultdict
f = open("23.in")
grid = defaultdict(list)
for y, line in enumerate(f.readlines()):
for x, cell in enumerate(line):
if cell != "\n":
grid[cell].append((x,y))
regions = defaultdict(list)
def explore(t, x, y, f):
global grid
contig = [(x,y)]
f.append((x,y))
if (x+1, y) in grid[t] and (x+1, y) not in f:
contig.extend(explore(t, x+1, y, f))
if (x-1, y) in grid[t] and (x-1, y) not in f:
contig.extend(explore(t, x-1, y, f))
if (x, y+1) in grid[t] and (x, y+1) not in f:
contig.extend(explore(t, x, y+1, f))
if (x, y-1) in grid[t] and (x, y-1) not in f:
contig.extend(explore(t, x, y-1, f))
return contig
for t in grid:
found = []
while len(found) != len(grid[t]):
found = []
for f in regions[t]:
found.extend(f)
for pos in grid[t]:
if pos not in found:
regions[t].append(explore(t, pos[0], pos[1], [pos]))
break
total = 0
for t in regions:
for region in regions[t]:
perimeter = 0
for cell in region:
x = cell[0]
y = cell[1]
if (x+1,y) in region and (x-1,y) in region and (x,y+1) in region and (x,y-1) in region:
continue
elif (x+1,y) in region and (x-1,y) in region and (x,y+1) in region:
perimeter += 1
elif (x-1,y) in region and (x,y+1) in region and (x,y-1) in region:
perimeter += 1
elif (x+1,y) in region and (x-1,y) in region and (x,y-1) in region:
perimeter += 1
elif (x,y+1) in region and (x,y-1) in region and (x+1,y) in region:
perimeter += 1
elif (x+1,y) in region and (x-1,y) in region:
perimeter += 2
elif (x,y+1) in region and (x,y-1) in region:
perimeter += 2
elif (x,y+1) in region and (x+1,y) in region:
perimeter += 2
elif (x,y+1) in region and (x-1,y) in region:
perimeter += 2
elif (x,y-1) in region and (x+1,y) in region:
perimeter += 2
elif (x,y-1) in region and (x-1,y) in region:
perimeter += 2
elif (x,y-1) in region:
perimeter += 3
elif (x,y+1) in region:
perimeter += 3
elif (x-1,y) in region:
perimeter += 3
elif (x+1,y) in region:
perimeter += 3
else:
perimeter += 4
total += perimeter * len(region)
print(total)