結果

問題 No.340 雪の足跡
ユーザー convexineqconvexineq
提出日時 2021-01-14 08:16:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 437 ms / 1,000 ms
コード長 1,225 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 109,836 KB
最終ジャッジ日時 2024-11-23 20:33:41
合計ジャッジ時間 9,491 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,760 KB
testcase_01 AC 47 ms
53,760 KB
testcase_02 AC 47 ms
53,760 KB
testcase_03 AC 47 ms
53,632 KB
testcase_04 AC 47 ms
53,632 KB
testcase_05 AC 47 ms
53,632 KB
testcase_06 AC 47 ms
53,888 KB
testcase_07 AC 48 ms
53,760 KB
testcase_08 AC 48 ms
53,632 KB
testcase_09 AC 48 ms
53,632 KB
testcase_10 AC 48 ms
54,016 KB
testcase_11 AC 76 ms
68,864 KB
testcase_12 AC 81 ms
69,888 KB
testcase_13 AC 82 ms
71,552 KB
testcase_14 AC 120 ms
77,568 KB
testcase_15 AC 133 ms
78,592 KB
testcase_16 AC 109 ms
76,928 KB
testcase_17 AC 142 ms
79,744 KB
testcase_18 AC 138 ms
79,616 KB
testcase_19 AC 139 ms
79,616 KB
testcase_20 AC 297 ms
102,272 KB
testcase_21 AC 160 ms
76,672 KB
testcase_22 AC 98 ms
90,880 KB
testcase_23 AC 313 ms
101,760 KB
testcase_24 AC 253 ms
102,528 KB
testcase_25 AC 280 ms
98,816 KB
testcase_26 AC 112 ms
76,544 KB
testcase_27 AC 74 ms
72,960 KB
testcase_28 AC 124 ms
77,440 KB
testcase_29 AC 357 ms
96,256 KB
testcase_30 AC 275 ms
88,012 KB
testcase_31 AC 389 ms
104,936 KB
testcase_32 AC 437 ms
109,836 KB
testcase_33 AC 391 ms
107,384 KB
testcase_34 AC 433 ms
109,600 KB
testcase_35 AC 330 ms
105,456 KB
testcase_36 AC 328 ms
105,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
w,h,n = map(int,input().split())

b1 = [[0]*w for _ in range(h)]
b2 = [[0]*h for _ in range(w)]

for _ in range(n):
    m = int(readline())
    t = list(map(int,input().split()))
    for i in range(m):
        x,y = t[i],t[i+1]
        if x > y: x,y = y,x
        if y-x < w:
            b1[x//w][x%w] += 1
            b1[y//w][y%w] -= 1
        else:
            b2[x%w][x//w] += 1
            b2[y%w][y//w] -= 1

for i in range(h):
    for j in range(1,w):
        b1[i][j] += b1[i][j-1]
for j in range(w):
    for i in range(1,h):
        b2[j][i] += b2[j][i-1]

from collections import deque
q = deque([(0,0)])
b = [[-1]*w for _ in range(h)]
b[0][0] = 0
while q:
    vi,vj = q.popleft()
    d = b[vi][vj]
    if vj and b1[vi][vj-1] and b[vi][vj-1]==-1:
        b[vi][vj-1] = d+1
        q.append((vi,vj-1))
    if vj+1<w and b1[vi][vj] and b[vi][vj+1]==-1:
        b[vi][vj+1] = d+1
        q.append((vi,vj+1))
    if vi and b2[vj][vi-1] and b[vi-1][vj]==-1:
        b[vi-1][vj] = d+1
        q.append((vi-1,vj))
    if vi+1<h and b2[vj][vi] and b[vi+1][vj]==-1:
        b[vi+1][vj] = d+1
        q.append((vi+1,vj))
print(b[h-1][w-1] if b[h-1][w-1] != -1 else "Odekakedekinai..")
0