結果

問題 No.340 雪の足跡
ユーザー convexineqconvexineq
提出日時 2021-01-14 08:12:31
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,230 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 109,824 KB
最終ジャッジ日時 2024-05-03 00:38:31
合計ジャッジ時間 7,652 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
54,144 KB
testcase_01 AC 46 ms
54,016 KB
testcase_02 AC 46 ms
54,400 KB
testcase_03 AC 45 ms
54,016 KB
testcase_04 AC 46 ms
54,272 KB
testcase_05 AC 46 ms
54,016 KB
testcase_06 AC 43 ms
54,272 KB
testcase_07 AC 45 ms
53,888 KB
testcase_08 AC 40 ms
54,144 KB
testcase_09 AC 41 ms
54,272 KB
testcase_10 AC 41 ms
54,016 KB
testcase_11 WA -
testcase_12 AC 68 ms
70,144 KB
testcase_13 WA -
testcase_14 AC 106 ms
78,208 KB
testcase_15 WA -
testcase_16 AC 94 ms
77,436 KB
testcase_17 AC 124 ms
79,732 KB
testcase_18 AC 121 ms
79,816 KB
testcase_19 AC 123 ms
79,864 KB
testcase_20 AC 277 ms
102,400 KB
testcase_21 AC 144 ms
76,932 KB
testcase_22 AC 81 ms
91,776 KB
testcase_23 AC 288 ms
101,760 KB
testcase_24 AC 233 ms
102,912 KB
testcase_25 AC 259 ms
103,040 KB
testcase_26 WA -
testcase_27 AC 64 ms
73,432 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 255 ms
88,064 KB
testcase_31 AC 362 ms
105,088 KB
testcase_32 AC 402 ms
109,696 KB
testcase_33 AC 353 ms
107,436 KB
testcase_34 AC 410 ms
109,824 KB
testcase_35 AC 323 ms
105,796 KB
testcase_36 AC 308 ms
105,472 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 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