結果

問題 No.124 門松列(3)
ユーザー colognecologne
提出日時 2022-02-28 21:45:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 877 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 71,672 KB
最終ジャッジ日時 2024-07-07 01:02:49
合計ジャッジ時間 2,356 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
63,924 KB
testcase_01 WA -
testcase_02 AC 37 ms
53,860 KB
testcase_03 AC 56 ms
71,672 KB
testcase_04 AC 55 ms
71,556 KB
testcase_05 AC 40 ms
61,760 KB
testcase_06 AC 35 ms
54,228 KB
testcase_07 AC 35 ms
54,752 KB
testcase_08 AC 35 ms
54,904 KB
testcase_09 AC 33 ms
54,788 KB
testcase_10 AC 33 ms
55,008 KB
testcase_11 AC 33 ms
54,336 KB
testcase_12 AC 35 ms
54,072 KB
testcase_13 AC 36 ms
54,884 KB
testcase_14 AC 36 ms
54,776 KB
testcase_15 AC 35 ms
55,172 KB
testcase_16 WA -
testcase_17 AC 36 ms
54,632 KB
testcase_18 AC 36 ms
54,676 KB
testcase_19 AC 36 ms
55,180 KB
testcase_20 WA -
testcase_21 AC 36 ms
54,220 KB
testcase_22 AC 36 ms
54,772 KB
testcase_23 AC 38 ms
61,112 KB
testcase_24 AC 38 ms
61,908 KB
testcase_25 AC 38 ms
61,036 KB
testcase_26 AC 37 ms
61,224 KB
testcase_27 AC 44 ms
65,168 KB
testcase_28 AC 38 ms
62,252 KB
testcase_29 AC 39 ms
62,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque


def main():
    W, H = map(int, input().split())
    M = [list(map(int, input().split())) for i in range(H)]
    Q = deque([(False, 0, 0), (True, 0, 0)])
    D = [[[None]*W for i in range(H)] for j in range(2)]
    D[0][0][0] = D[1][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)]:
            r, c = x + dx, y + dy
            if 0 <= r < H and 0 <= c < W and D[not b][r][c] is None:
                if b and M[x][y] >= M[r][c]:
                    continue
                if (not b) and M[x][y] <= M[r][c]:
                    continue
                D[not b][r][c] = D[b][x][y] + 1
                Q.append((not b, r, c))
    print(-1)
    return


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