-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path16b.py
54 lines (50 loc) · 843 Bytes
/
16b.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
b=[l.strip()for l in open('16ex')]
w=len(b)
b=''.join(b).strip()
c=[99999999]*w*w
D=0,1,0,-1
def m(p,d):
x=p%w+D[d]
y=p//w+D[~d]
p=y*w+x
return(p,b[p])if 0<=x<=w and 0<=y<=y else(0,0)
e=b.find('E')
s=b.find('S')
c[s]=0
def fr(p,d):
cost=c[p]
for nd in 0,1,2,3:
np,nv=m(p,nd)
if nv not in '.E': continue
nc=cost+1+(0 if nd==d else 1000)
if nc<=c[np]:
c[np]=nc
fr(np,nd)
import sys
sys.setrecursionlimit(10000)
fr(s,1)
print(c[e])
def cr(p,r):
r.add(p)
for d in 0,1,2,3:
np,nv=m(p,d)
if c[np]%1000<c[p]%1000:
cr(np,r)
def pr():
for i in range(0,w*w,w):
l=b[i:i+w]
pl=''
for j,ch in enumerate(l):
pl+='O' if i+j in r else ch
print(pl)
r=set()
cr(e,r)
pr()
print(len(r))
x=5
y=7
p=y*w+x
print(c[p])
for d in 0,1,2,3:
np,nd=m(p,d)
print(' ',c[np])