結果

問題 No.2639 Longest Increasing Walk
ユーザー 寝癖寝癖
提出日時 2024-06-02 18:21:41
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 728 bytes
コンパイル時間 1,420 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 118,360 KB
最終ジャッジ日時 2024-06-02 18:21:49
合計ジャッジ時間 7,871 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,784 KB
testcase_01 AC 45 ms
55,040 KB
testcase_02 AC 42 ms
55,104 KB
testcase_03 AC 42 ms
54,784 KB
testcase_04 AC 235 ms
111,252 KB
testcase_05 AC 241 ms
118,360 KB
testcase_06 RE -
testcase_07 RE -
testcase_08 AC 264 ms
116,536 KB
testcase_09 RE -
testcase_10 AC 317 ms
95,736 KB
testcase_11 AC 299 ms
95,020 KB
testcase_12 AC 157 ms
80,264 KB
testcase_13 AC 316 ms
102,656 KB
testcase_14 AC 253 ms
89,072 KB
testcase_15 AC 44 ms
55,296 KB
testcase_16 AC 100 ms
77,504 KB
testcase_17 AC 252 ms
90,184 KB
testcase_18 AC 293 ms
93,188 KB
testcase_19 AC 186 ms
80,920 KB
testcase_20 AC 274 ms
87,016 KB
testcase_21 AC 293 ms
96,440 KB
testcase_22 AC 205 ms
84,088 KB
testcase_23 AC 62 ms
67,840 KB
testcase_24 AC 63 ms
68,352 KB
testcase_25 AC 72 ms
73,600 KB
testcase_26 AC 46 ms
55,680 KB
testcase_27 AC 82 ms
76,996 KB
testcase_28 AC 43 ms
55,168 KB
testcase_29 AC 46 ms
54,912 KB
testcase_30 AC 44 ms
54,912 KB
testcase_31 AC 45 ms
54,912 KB
testcase_32 AC 43 ms
55,040 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