結果

問題 No.124 門松列(3)
ユーザー colognecologne
提出日時 2022-02-28 21:50:09
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 844 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 74,240 KB
最終ジャッジ日時 2024-07-07 01:06:49
合計ジャッジ時間 2,915 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
67,072 KB
testcase_01 WA -
testcase_02 AC 46 ms
54,016 KB
testcase_03 AC 84 ms
74,240 KB
testcase_04 AC 51 ms
62,464 KB
testcase_05 AC 50 ms
62,336 KB
testcase_06 AC 44 ms
53,760 KB
testcase_07 AC 42 ms
54,016 KB
testcase_08 AC 43 ms
54,016 KB
testcase_09 AC 43 ms
53,888 KB
testcase_10 AC 42 ms
54,016 KB
testcase_11 AC 44 ms
53,504 KB
testcase_12 AC 43 ms
54,016 KB
testcase_13 AC 43 ms
53,760 KB
testcase_14 AC 44 ms
53,632 KB
testcase_15 AC 44 ms
54,656 KB
testcase_16 AC 57 ms
63,744 KB
testcase_17 AC 47 ms
54,124 KB
testcase_18 AC 44 ms
54,016 KB
testcase_19 AC 47 ms
54,144 KB
testcase_20 AC 53 ms
61,760 KB
testcase_21 AC 46 ms
54,272 KB
testcase_22 AC 45 ms
54,784 KB
testcase_23 AC 48 ms
60,800 KB
testcase_24 AC 48 ms
61,040 KB
testcase_25 AC 49 ms
61,312 KB
testcase_26 AC 50 ms
59,904 KB
testcase_27 AC 48 ms
60,288 KB
testcase_28 AC 49 ms
62,336 KB
testcase_29 AC 49 ms
62,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


def iks(a, b, c):
    return a != c and ((a < b > c) or (a > b < c))


def main():
    W, H = map(int, input().split())
    M = [list(map(int, input().split())) for i in range(H)]
    Q = deque([(i, 0, 0) for i in range(10)])
    D = [[[None]*W for i in range(H)] for j in range(10)]
    for i in range(10):
        D[i][0][0] = 0
    while len(Q) > 0:
        b, x, y = Q.popleft()
        if (x, y) == (H-1, W-1):
            print(D[b][x][y])
            return
        for dx, dy in [(-1, 0), (1, 0), (0, 1), (0, -1)]:
            bv, r, c = M[x][y], x + dx, y + dy
            if 0 <= r < H and 0 <= c < W and D[bv][r][c] is None and iks(b, M[x][y], M[r][c]):
                D[bv][r][c] = D[b][x][y] + 1
                Q.append((bv, r, c))
    print(-1)
    return


if __name__ == '__main__':
    main()
0