結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
60,416 KB
testcase_01 AC 56 ms
54,784 KB
testcase_02 AC 53 ms
55,168 KB
testcase_03 AC 53 ms
54,400 KB
testcase_04 AC 298 ms
118,256 KB
testcase_05 AC 534 ms
132,816 KB
testcase_06 AC 529 ms
141,536 KB
testcase_07 TLE -
testcase_08 AC 622 ms
134,940 KB
testcase_09 AC 688 ms
158,876 KB
testcase_10 AC 326 ms
100,736 KB
testcase_11 AC 310 ms
98,176 KB
testcase_12 AC 117 ms
78,336 KB
testcase_13 AC 346 ms
104,832 KB
testcase_14 AC 239 ms
92,288 KB
testcase_15 AC 54 ms
55,296 KB
testcase_16 AC 101 ms
76,928 KB
testcase_17 AC 241 ms
91,648 KB
testcase_18 AC 278 ms
95,744 KB
testcase_19 AC 143 ms
79,872 KB
testcase_20 AC 205 ms
87,552 KB
testcase_21 AC 323 ms
99,072 KB
testcase_22 AC 178 ms
84,736 KB
testcase_23 AC 81 ms
70,016 KB
testcase_24 AC 78 ms
68,352 KB
testcase_25 AC 96 ms
76,800 KB
testcase_26 AC 61 ms
55,040 KB
testcase_27 AC 93 ms
76,928 KB
testcase_28 AC 55 ms
54,528 KB
testcase_29 AC 55 ms
54,528 KB
testcase_30 AC 54 ms
54,656 KB
testcase_31 AC 54 ms
54,912 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 = 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