結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,888 KB
testcase_01 AC 44 ms
54,144 KB
testcase_02 AC 43 ms
53,888 KB
testcase_03 AC 42 ms
53,760 KB
testcase_04 AC 42 ms
53,888 KB
testcase_05 AC 42 ms
53,760 KB
testcase_06 AC 42 ms
53,760 KB
testcase_07 AC 43 ms
53,632 KB
testcase_08 AC 44 ms
53,888 KB
testcase_09 AC 44 ms
53,760 KB
testcase_10 AC 45 ms
53,632 KB
testcase_11 AC 79 ms
74,496 KB
testcase_12 AC 74 ms
74,624 KB
testcase_13 AC 82 ms
76,288 KB
testcase_14 AC 138 ms
79,744 KB
testcase_15 AC 137 ms
79,744 KB
testcase_16 AC 114 ms
78,336 KB
testcase_17 AC 149 ms
80,000 KB
testcase_18 AC 151 ms
80,040 KB
testcase_19 AC 148 ms
80,384 KB
testcase_20 AC 285 ms
107,776 KB
testcase_21 AC 126 ms
79,360 KB
testcase_22 AC 63 ms
83,200 KB
testcase_23 AC 460 ms
107,520 KB
testcase_24 AC 181 ms
106,112 KB
testcase_25 AC 243 ms
107,776 KB
testcase_26 AC 112 ms
77,824 KB
testcase_27 AC 65 ms
69,760 KB
testcase_28 AC 134 ms
78,848 KB
testcase_29 AC 527 ms
101,888 KB
testcase_30 AC 447 ms
95,744 KB
testcase_31 AC 756 ms
113,352 KB
testcase_32 AC 783 ms
116,984 KB
testcase_33 AC 793 ms
115,104 KB
testcase_34 AC 837 ms
117,108 KB
testcase_35 AC 711 ms
116,952 KB
testcase_36 AC 736 ms
116,760 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