結果

問題 No.2639 Longest Increasing Walk
ユーザー 寝癖寝癖
提出日時 2024-06-02 18:18:28
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 564 bytes
コンパイル時間 1,422 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 169,000 KB
最終ジャッジ日時 2024-06-02 18:18:39
合計ジャッジ時間 10,695 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,656 KB
testcase_01 AC 46 ms
54,912 KB
testcase_02 AC 46 ms
54,912 KB
testcase_03 AC 46 ms
54,656 KB
testcase_04 AC 375 ms
154,296 KB
testcase_05 AC 472 ms
167,208 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 544 ms
169,000 KB
testcase_09 RE -
testcase_10 AC 485 ms
125,112 KB
testcase_11 AC 429 ms
118,064 KB
testcase_12 AC 178 ms
82,944 KB
testcase_13 AC 493 ms
131,584 KB
testcase_14 AC 339 ms
103,744 KB
testcase_15 AC 45 ms
55,552 KB
testcase_16 AC 102 ms
77,696 KB
testcase_17 AC 347 ms
105,572 KB
testcase_18 AC 397 ms
109,984 KB
testcase_19 AC 227 ms
86,960 KB
testcase_20 AC 306 ms
97,544 KB
testcase_21 AC 538 ms
118,036 KB
testcase_22 AC 257 ms
91,140 KB
testcase_23 AC 70 ms
69,504 KB
testcase_24 AC 65 ms
68,480 KB
testcase_25 AC 90 ms
77,056 KB
testcase_26 AC 45 ms
55,808 KB
testcase_27 AC 92 ms
77,056 KB
testcase_28 AC 44 ms
54,528 KB
testcase_29 AC 46 ms
55,296 KB
testcase_30 AC 45 ms
54,656 KB
testcase_31 AC 43 ms
55,040 KB
testcase_32 AC 43 ms
55,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache

H, W = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(H)]

@lru_cache(maxsize=None)
def dp(i, j):
    # (i, j)からスタートして何マス歩けるか
    res = 1
    for dx, dy in [(1, 0), (-1, 0), (0, 1), (0, -1)]:
        ni, nj = i+dx, j+dy
        if not (0 <= ni < H and 0 <= nj < W):
            continue
        if A[i][j] < A[ni][nj]:
            res = max(res, dp(ni, nj)+1)
    return res

ans = 0
for i in range(H):
    for j in range(W):
        ans = max(ans, dp(i, j))

print(ans)
0