結果

問題 No.340 雪の足跡
ユーザー convexineqconvexineq
提出日時 2021-01-14 08:09:18
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,230 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 109,656 KB
最終ジャッジ日時 2024-05-03 00:35:19
合計ジャッジ時間 8,144 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
53,760 KB
testcase_01 AC 47 ms
53,888 KB
testcase_02 RE -
testcase_03 AC 43 ms
54,272 KB
testcase_04 AC 41 ms
54,272 KB
testcase_05 AC 40 ms
54,272 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 48 ms
54,016 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 126 ms
79,568 KB
testcase_18 AC 123 ms
79,564 KB
testcase_19 AC 127 ms
79,744 KB
testcase_20 AC 281 ms
102,276 KB
testcase_21 RE -
testcase_22 AC 97 ms
91,276 KB
testcase_23 AC 295 ms
101,828 KB
testcase_24 AC 240 ms
102,876 KB
testcase_25 AC 265 ms
103,040 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 AC 410 ms
109,656 KB
testcase_33 AC 361 ms
107,056 KB
testcase_34 AC 402 ms
109,568 KB
testcase_35 AC 315 ms
105,472 KB
testcase_36 AC 306 ms
105,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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 abs(x-y) < 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<w 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