結果

問題 No.2639 Longest Increasing Walk
ユーザー ThetaTheta
提出日時 2024-03-05 19:42:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 825 ms / 2,000 ms
コード長 1,201 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 48,232 KB
最終ジャッジ日時 2024-09-29 18:03:53
合計ジャッジ時間 11,168 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 563 ms
40,832 KB
testcase_05 AC 705 ms
48,232 KB
testcase_06 AC 680 ms
47,728 KB
testcase_07 AC 797 ms
47,620 KB
testcase_08 AC 690 ms
47,984 KB
testcase_09 AC 825 ms
48,180 KB
testcase_10 AC 586 ms
28,404 KB
testcase_11 AC 529 ms
26,600 KB
testcase_12 AC 85 ms
13,312 KB
testcase_13 AC 640 ms
29,752 KB
testcase_14 AC 343 ms
21,632 KB
testcase_15 AC 31 ms
10,880 KB
testcase_16 AC 37 ms
11,136 KB
testcase_17 AC 307 ms
21,736 KB
testcase_18 AC 423 ms
23,536 KB
testcase_19 AC 111 ms
14,336 KB
testcase_20 AC 232 ms
18,688 KB
testcase_21 AC 518 ms
26,520 KB
testcase_22 AC 175 ms
16,512 KB
testcase_23 AC 33 ms
10,880 KB
testcase_24 AC 32 ms
11,008 KB
testcase_25 AC 34 ms
11,008 KB
testcase_26 AC 32 ms
10,880 KB
testcase_27 AC 36 ms
11,136 KB
testcase_28 AC 29 ms
10,880 KB
testcase_29 AC 29 ms
10,880 KB
testcase_30 AC 29 ms
10,880 KB
testcase_31 AC 31 ms
10,880 KB
testcase_32 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product
from math import inf, isinf
DIJ = ((0, 1), (1, 0), (0, -1), (-1, 0))


def main():
    H, W = map(int, input().split())

    def is_in_board(position: tuple[int, int]) -> bool:
        return 0 <= position[0] < H and 0 <= position[1] < W
    board = [list(map(int, input().split())) for _ in range(H)]

    coords = sorted([(board[h][w], h, w)
                    for h, w in product(range(H), range(W))])
    distances = [[-inf] * W for _ in range(H)]
    for coord in coords:
        if isinf(distances[coord[1]][coord[2]]):
            distances[coord[1]][coord[2]] = 1

        for dij in DIJ:
            neighbor = (coord[1] + dij[0], coord[2] + dij[1])
            if not is_in_board(neighbor):
                continue
            if board[coord[1]][coord[2]] >= board[neighbor[0]][neighbor[1]]:
                continue
            if distances[neighbor[0]][neighbor[1]
                                      ] < distances[coord[1]][coord[2]] + 1:
                distances[neighbor[0]][neighbor[1]
                                       ] = distances[coord[1]][coord[2]] + 1

    print(max(max(row) for row in distances))


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