結果

問題 No.340 雪の足跡
ユーザー maspymaspy
提出日時 2020-03-21 13:41:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 974 ms / 1,000 ms
コード長 1,493 bytes
コンパイル時間 199 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 117,552 KB
最終ジャッジ日時 2024-06-01 10:18:57
合計ジャッジ時間 12,124 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,572 KB
testcase_01 AC 43 ms
54,376 KB
testcase_02 AC 43 ms
54,676 KB
testcase_03 AC 44 ms
54,876 KB
testcase_04 AC 42 ms
54,444 KB
testcase_05 AC 43 ms
55,388 KB
testcase_06 AC 47 ms
53,984 KB
testcase_07 AC 43 ms
54,872 KB
testcase_08 AC 46 ms
55,788 KB
testcase_09 AC 44 ms
55,736 KB
testcase_10 AC 46 ms
54,544 KB
testcase_11 AC 81 ms
74,820 KB
testcase_12 AC 74 ms
74,892 KB
testcase_13 AC 82 ms
76,884 KB
testcase_14 AC 142 ms
79,432 KB
testcase_15 AC 142 ms
79,680 KB
testcase_16 AC 117 ms
77,876 KB
testcase_17 AC 151 ms
80,140 KB
testcase_18 AC 156 ms
80,192 KB
testcase_19 AC 154 ms
79,880 KB
testcase_20 AC 289 ms
108,028 KB
testcase_21 AC 124 ms
79,576 KB
testcase_22 AC 63 ms
84,096 KB
testcase_23 AC 511 ms
107,876 KB
testcase_24 AC 189 ms
106,240 KB
testcase_25 AC 257 ms
107,972 KB
testcase_26 AC 111 ms
78,052 KB
testcase_27 AC 65 ms
71,460 KB
testcase_28 AC 133 ms
79,364 KB
testcase_29 AC 646 ms
102,036 KB
testcase_30 AC 473 ms
95,328 KB
testcase_31 AC 840 ms
112,964 KB
testcase_32 AC 961 ms
117,076 KB
testcase_33 AC 915 ms
115,044 KB
testcase_34 AC 974 ms
117,552 KB
testcase_35 AC 848 ms
116,276 KB
testcase_36 AC 883 ms
116,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from collections import deque

W, H, Q = map(int, readline().split())
query = readlines()

if H == W == 1:
    print(0)
    exit()

N = H * W
horizonal_max = list(range(N))
vertical_max = list(range(N))

for line in query[1::2]:
    B = map(int, line.split())
    x = next(B)
    for y in B:
        a, b = x, y
        if a > b:
            a, b = b, a
        if b - a < W:
            if horizonal_max[a] < b:
                horizonal_max[a] = b
        else:
            if vertical_max[a] < b:
                vertical_max[a] = b
        x = y

for i in range(N):
    h = horizonal_max[i]
    if h > i:
        if horizonal_max[i + 1] < h:
            horizonal_max[i + 1] = h
    v = vertical_max[i]
    if v > i:
        if vertical_max[i + W] < v:
            vertical_max[i + W] = v

INF = N + 10
dist = [INF] * N
dist[0] = 0
q = deque([0])
goal = N - 1


def gen_w(v):
    if horizonal_max[v] > v:
        yield v + 1
    if v and horizonal_max[v - 1] >= v:
        yield v - 1
    if vertical_max[v] > v:
        yield v + W
    if v >= W and vertical_max[v - W] >= v:
        yield v - W


while q:
    v = q.popleft()
    dw = dist[v] + 1

    for w in gen_w(v):
        if dist[w] <= dw:
            continue
        if w == goal:
            print(dw)
            exit()
        dist[w] = dw
        q.append(w)

print('Odekakedekinai..')
0