結果

問題 No.340 雪の足跡
ユーザー chocoruskchocorusk
提出日時 2020-09-23 02:20:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 439 ms / 1,000 ms
コード長 1,190 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 195,200 KB
最終ジャッジ日時 2024-06-27 03:29:53
合計ジャッジ時間 8,126 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 39 ms
52,424 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 39 ms
52,608 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 39 ms
52,608 KB
testcase_08 AC 39 ms
52,224 KB
testcase_09 AC 38 ms
52,224 KB
testcase_10 AC 40 ms
52,352 KB
testcase_11 AC 64 ms
66,304 KB
testcase_12 AC 64 ms
67,200 KB
testcase_13 AC 63 ms
68,352 KB
testcase_14 AC 104 ms
82,560 KB
testcase_15 AC 104 ms
83,220 KB
testcase_16 AC 81 ms
78,976 KB
testcase_17 AC 111 ms
85,120 KB
testcase_18 AC 113 ms
85,888 KB
testcase_19 AC 114 ms
85,504 KB
testcase_20 AC 279 ms
132,760 KB
testcase_21 AC 130 ms
76,544 KB
testcase_22 AC 122 ms
115,200 KB
testcase_23 AC 362 ms
195,200 KB
testcase_24 AC 238 ms
119,040 KB
testcase_25 AC 287 ms
125,952 KB
testcase_26 AC 94 ms
76,520 KB
testcase_27 AC 62 ms
70,912 KB
testcase_28 AC 100 ms
80,512 KB
testcase_29 AC 321 ms
141,952 KB
testcase_30 AC 262 ms
123,724 KB
testcase_31 AC 376 ms
180,508 KB
testcase_32 AC 421 ms
194,028 KB
testcase_33 AC 393 ms
193,276 KB
testcase_34 AC 439 ms
193,588 KB
testcase_35 AC 337 ms
160,300 KB
testcase_36 AC 344 ms
160,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline=sys.stdin.buffer.readline
w, h, n=map(int, readline().split())
s1=[[0]*w for i in range(h)]
s2=[[0]*h for i in range(w)]
for i in range(n):
    m=int(readline())
    b=list(map(int, readline().split()))
    for j in range(m):
        x1, y1=divmod(b[j], w)
        x2, y2=divmod(b[j+1], w)
        if x1==x2:
            if y1>y2:y1, y2=y2, y1
            s1[x1][y1]+=1
            s1[x1][y2]-=1
        else:
            if x1>x2:x1, x2=x2, x1
            s2[y1][x1]+=1
            s2[y1][x2]-=1
from itertools import accumulate
for i in range(h):s1[i]=list(accumulate(s1[i]))
for i in range(w):s2[i]=list(accumulate(s2[i]))
INF=10**9
d=[INF]*(h*w)
d[0]=0
que=[0]
for p in que:
    x, y=divmod(p, w)
    d0=d[p]
    p1, p2, p3, p4=(x-1)*w+y, (x+1)*w+y, x*w+y-1, x*w+y+1
    if x-1>=0 and s2[y][x-1]>0 and d[p1]>d0+1:
        d[p1]=d0+1
        que.append(p1)
    if x+1<h and s2[y][x]>0 and d[p2]>d0+1:
        d[p2]=d0+1
        que.append(p2)
    if y-1>=0 and s1[x][y-1]>0 and d[p3]>d0+1:
        d[p3]=d0+1
        que.append(p3)
    if y+1<w and s1[x][y]>0 and d[p4]>d0+1:
        d[p4]=d0+1
        que.append(p4)
print(d[-1] if d[-1]<INF else "Odekakedekinai..")
0