結果

問題 No.340 雪の足跡
ユーザー maspymaspy
提出日時 2020-03-21 13:52:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 733 ms / 1,000 ms
コード長 1,430 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 224,056 KB
最終ジャッジ日時 2024-06-01 10:28:06
合計ジャッジ時間 10,100 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,532 KB
testcase_01 AC 37 ms
53,024 KB
testcase_02 AC 37 ms
53,544 KB
testcase_03 AC 41 ms
52,652 KB
testcase_04 AC 39 ms
52,996 KB
testcase_05 AC 38 ms
52,768 KB
testcase_06 AC 38 ms
52,396 KB
testcase_07 AC 38 ms
53,240 KB
testcase_08 AC 37 ms
53,416 KB
testcase_09 AC 37 ms
53,312 KB
testcase_10 AC 37 ms
53,792 KB
testcase_11 AC 65 ms
70,980 KB
testcase_12 AC 65 ms
69,456 KB
testcase_13 AC 67 ms
70,772 KB
testcase_14 AC 107 ms
82,076 KB
testcase_15 AC 110 ms
82,392 KB
testcase_16 AC 96 ms
79,436 KB
testcase_17 AC 124 ms
89,556 KB
testcase_18 AC 111 ms
82,540 KB
testcase_19 AC 125 ms
89,472 KB
testcase_20 AC 341 ms
164,328 KB
testcase_21 AC 115 ms
79,020 KB
testcase_22 AC 122 ms
135,536 KB
testcase_23 AC 420 ms
224,056 KB
testcase_24 AC 209 ms
135,628 KB
testcase_25 AC 311 ms
175,612 KB
testcase_26 AC 104 ms
78,792 KB
testcase_27 AC 58 ms
69,088 KB
testcase_28 AC 106 ms
78,720 KB
testcase_29 AC 503 ms
165,140 KB
testcase_30 AC 392 ms
143,172 KB
testcase_31 AC 666 ms
212,056 KB
testcase_32 AC 733 ms
224,016 KB
testcase_33 AC 693 ms
220,780 KB
testcase_34 AC 731 ms
223,728 KB
testcase_35 AC 639 ms
223,188 KB
testcase_36 AC 642 ms
223,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

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

INF = N + 10
dist = [INF] * N
visited = [False] * N
q = [0]
goal = N - 1
d = 0
while q:
    qq = []
    d += 1
    for v in q:
        for w in graph[v]:
            if visited[w]:
                continue
            if w == goal:
                print(d)
                exit()
            visited[w] = True
            qq.append(w)
    q = qq

print('Odekakedekinai..')
0