結果

問題 No.2639 Longest Increasing Walk
ユーザー 寝癖寝癖
提出日時 2024-06-02 18:21:41
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 728 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 117,856 KB
最終ジャッジ日時 2024-12-23 10:19:44
合計ジャッジ時間 6,462 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,784 KB
testcase_01 AC 40 ms
55,168 KB
testcase_02 AC 39 ms
54,784 KB
testcase_03 AC 38 ms
54,528 KB
testcase_04 AC 180 ms
111,124 KB
testcase_05 AC 238 ms
117,856 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 257 ms
116,800 KB
testcase_09 RE -
testcase_10 AC 336 ms
96,116 KB
testcase_11 AC 284 ms
94,688 KB
testcase_12 AC 147 ms
80,052 KB
testcase_13 AC 311 ms
102,788 KB
testcase_14 AC 241 ms
89,328 KB
testcase_15 AC 41 ms
55,168 KB
testcase_16 AC 93 ms
77,312 KB
testcase_17 AC 239 ms
89,804 KB
testcase_18 AC 276 ms
92,516 KB
testcase_19 AC 176 ms
80,796 KB
testcase_20 AC 240 ms
87,020 KB
testcase_21 AC 284 ms
96,576 KB
testcase_22 AC 193 ms
84,472 KB
testcase_23 AC 58 ms
67,584 KB
testcase_24 AC 61 ms
68,736 KB
testcase_25 AC 67 ms
73,984 KB
testcase_26 AC 42 ms
55,680 KB
testcase_27 AC 79 ms
77,184 KB
testcase_28 AC 39 ms
54,784 KB
testcase_29 AC 42 ms
55,168 KB
testcase_30 AC 46 ms
55,168 KB
testcase_31 AC 44 ms
55,168 KB
testcase_32 AC 43 ms
54,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import lru_cache

# from sys import setrecursionlimit
# import pypyjit
# setrecursionlimit(10 ** 7)
# pypyjit.set_param('max_unroll_recursion=-1')

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

@lru_cache(maxsize=None)
def dp(x):
    # (i, j)からスタートして何マス歩けるか
    i, j = divmod(x, W)
    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*W+j] < A[ni*W+nj]:
            res = max(res, dp(ni*W+nj)+1)
    return res

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

print(ans)
0