-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathd3.py
59 lines (48 loc) · 1.14 KB
/
d3.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
ans = 0
def is_symbol(c):
return c != '.' and not c.isdigit()
lines = open('d3.txt').read().splitlines()
data = [list(line) for line in lines]
rows = len(data)
cols = len(data[0])
start = 0
end = 0
r = 0
while r < rows:
c = 0
while c < cols:
valid = False
if data[r][c].isdigit():
start = (r, c)
p = c
while p < cols:
if not data[r][p].isdigit():
break
p += 1
end = (r, p-1)
num = int(''.join(data[r][c:p]))
start_row = start[0] - 1
running_col = start[1] - 1
while start_row >= 0 and end[1]+1 < cols and running_col <= end[1]+1:
cur = data[start_row][running_col]
if is_symbol(cur):
valid = True
break
running_col += 1
if (start[1]-1 >=0 and is_symbol(data[r][start[1]-1])) or (end[1]+1 < cols and is_symbol(data[r][end[1]+1])):
valid = True
start_row = start[0] + 1
running_col = start[1] - 1
while start_row < rows and end[1]+1 < cols and running_col <= end[1]+1:
cur = data[start_row][running_col]
if is_symbol(cur):
valid = True
break
running_col += 1
if valid:
c = p
ans += num
else:
c += 1
r += 1
print('answer: ', ans)