結果

問題 No.2639 Longest Increasing Walk
ユーザー 寝癖寝癖
提出日時 2024-06-02 18:18:47
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 686 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 769,760 KB
最終ジャッジ日時 2024-12-23 10:19:37
合計ジャッジ時間 15,993 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
60,160 KB
testcase_01 AC 54 ms
54,912 KB
testcase_02 AC 55 ms
54,912 KB
testcase_03 AC 57 ms
54,912 KB
testcase_04 AC 597 ms
169,472 KB
testcase_05 AC 1,155 ms
190,464 KB
testcase_06 AC 1,193 ms
205,568 KB
testcase_07 TLE -
testcase_08 AC 1,289 ms
194,252 KB
testcase_09 AC 1,451 ms
235,112 KB
testcase_10 AC 596 ms
130,560 KB
testcase_11 AC 575 ms
124,416 KB
testcase_12 AC 150 ms
83,072 KB
testcase_13 AC 705 ms
136,448 KB
testcase_14 AC 407 ms
110,316 KB
testcase_15 AC 51 ms
55,680 KB
testcase_16 AC 96 ms
76,800 KB
testcase_17 AC 412 ms
109,696 KB
testcase_18 AC 465 ms
117,760 KB
testcase_19 AC 187 ms
86,776 KB
testcase_20 AC 315 ms
100,524 KB
testcase_21 AC 562 ms
124,672 KB
testcase_22 AC 256 ms
94,720 KB
testcase_23 AC 75 ms
73,088 KB
testcase_24 AC 73 ms
71,296 KB
testcase_25 AC 91 ms
77,184 KB
testcase_26 AC 50 ms
56,064 KB
testcase_27 AC 86 ms
77,272 KB
testcase_28 AC 51 ms
54,400 KB
testcase_29 AC 50 ms
55,168 KB
testcase_30 AC 50 ms
55,364 KB
testcase_31 AC 50 ms
55,296 KB
testcase_32 MLE -
権限があれば一括ダウンロードができます

ソースコード

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 = [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