結果

問題 No.124 門松列(3)
ユーザー ckawatakckawatak
提出日時 2019-01-20 13:33:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 920 ms / 5,000 ms
コード長 1,165 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 230,892 KB
最終ジャッジ日時 2024-09-13 04:40:44
合計ジャッジ時間 10,059 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 873 ms
229,888 KB
testcase_01 AC 63 ms
67,880 KB
testcase_02 AC 65 ms
66,780 KB
testcase_03 AC 920 ms
230,892 KB
testcase_04 AC 851 ms
229,188 KB
testcase_05 AC 838 ms
228,988 KB
testcase_06 AC 64 ms
66,996 KB
testcase_07 AC 65 ms
67,836 KB
testcase_08 AC 64 ms
68,268 KB
testcase_09 AC 65 ms
68,120 KB
testcase_10 AC 64 ms
67,128 KB
testcase_11 AC 64 ms
67,924 KB
testcase_12 AC 64 ms
67,724 KB
testcase_13 AC 65 ms
67,060 KB
testcase_14 AC 72 ms
72,464 KB
testcase_15 AC 73 ms
72,076 KB
testcase_16 AC 120 ms
80,212 KB
testcase_17 AC 89 ms
78,100 KB
testcase_18 AC 74 ms
73,932 KB
testcase_19 AC 87 ms
78,404 KB
testcase_20 AC 113 ms
78,896 KB
testcase_21 AC 75 ms
73,900 KB
testcase_22 AC 89 ms
78,140 KB
testcase_23 AC 221 ms
103,448 KB
testcase_24 AC 311 ms
121,420 KB
testcase_25 AC 398 ms
137,712 KB
testcase_26 AC 164 ms
90,304 KB
testcase_27 AC 120 ms
84,468 KB
testcase_28 AC 838 ms
228,964 KB
testcase_29 AC 821 ms
228,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from queue import PriorityQueue

W,H = list(map(int, input().split(' ')))

G = []
for i in range(H):
    G.append(list(map(int, input().split(' '))))

distance = []
for i in range(H):
    for j in range(W):
        distance.append([[float('inf') for _ in range(10)] for _ in range(W)])

def is_kadomatsu(prev,current,next):
    if prev == 0:
        return True
    return ((prev < current and next < current) or (current < prev and current < next)) and prev != next


def dijkstra():
    dx = [1, 0, -1, 0]
    dy = [0, 1, 0, -1]

    que = PriorityQueue()

    que.put((0,0,0,0))
    distance[0][0][0] = 0

    answer = -1
    while not que.empty():
        dist,last,x,y = que.get()
        if x == H-1 and y == W-1:
            answer = dist
            break
        for i in range(len(dx)):
            nx = x + dx[i]
            ny = y + dy[i]
            if 0 <= nx and 0 <= ny and nx < H and ny < W \
               and distance[nx][ny][G[x][y]] == float('inf') \
                   and is_kadomatsu(last, G[x][y], G[nx][ny]):
                que.put((dist+1,G[x][y],nx,ny))
                distance[nx][ny][G[x][y]] = dist+1

    print(answer)

dijkstra()
0