結果

問題 No.124 門松列(3)
ユーザー colognecologne
提出日時 2022-02-28 21:50:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 5,000 ms
コード長 844 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 77,312 KB
最終ジャッジ日時 2024-07-07 01:07:57
合計ジャッジ時間 2,493 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
68,352 KB
testcase_01 AC 37 ms
54,272 KB
testcase_02 AC 34 ms
53,760 KB
testcase_03 AC 65 ms
77,312 KB
testcase_04 AC 42 ms
63,232 KB
testcase_05 AC 41 ms
62,720 KB
testcase_06 AC 34 ms
53,888 KB
testcase_07 AC 35 ms
54,016 KB
testcase_08 AC 34 ms
54,016 KB
testcase_09 AC 34 ms
54,272 KB
testcase_10 AC 37 ms
54,400 KB
testcase_11 AC 33 ms
54,016 KB
testcase_12 AC 34 ms
54,016 KB
testcase_13 AC 33 ms
54,400 KB
testcase_14 AC 34 ms
53,888 KB
testcase_15 AC 35 ms
54,528 KB
testcase_16 AC 45 ms
63,488 KB
testcase_17 AC 36 ms
54,400 KB
testcase_18 AC 34 ms
54,528 KB
testcase_19 AC 33 ms
54,400 KB
testcase_20 AC 40 ms
61,952 KB
testcase_21 AC 35 ms
54,144 KB
testcase_22 AC 36 ms
54,528 KB
testcase_23 AC 37 ms
60,928 KB
testcase_24 AC 39 ms
62,208 KB
testcase_25 AC 40 ms
61,312 KB
testcase_26 AC 37 ms
60,160 KB
testcase_27 AC 38 ms
60,032 KB
testcase_28 AC 39 ms
63,104 KB
testcase_29 AC 40 ms
62,976 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(11)])
    D = [[[None]*W for i in range(H)] for j in range(11)]
    for i in range(11):
        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