結果

問題 No.2639 Longest Increasing Walk
ユーザー 寝癖寝癖
提出日時 2024-06-02 18:23:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,870 ms / 2,000 ms
コード長 732 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 387,848 KB
最終ジャッジ日時 2024-06-02 18:23:14
合計ジャッジ時間 7,655 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,840 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 35 ms
52,224 KB
testcase_04 AC 188 ms
110,152 KB
testcase_05 AC 249 ms
121,488 KB
testcase_06 AC 258 ms
122,300 KB
testcase_07 AC 1,870 ms
387,848 KB
testcase_08 AC 274 ms
122,996 KB
testcase_09 AC 300 ms
125,624 KB
testcase_10 AC 186 ms
97,536 KB
testcase_11 AC 168 ms
94,720 KB
testcase_12 AC 78 ms
78,080 KB
testcase_13 AC 189 ms
99,968 KB
testcase_14 AC 133 ms
89,084 KB
testcase_15 AC 37 ms
52,224 KB
testcase_16 AC 66 ms
71,936 KB
testcase_17 AC 139 ms
88,960 KB
testcase_18 AC 151 ms
93,056 KB
testcase_19 AC 107 ms
79,616 KB
testcase_20 AC 121 ms
85,248 KB
testcase_21 AC 177 ms
95,488 KB
testcase_22 AC 101 ms
82,156 KB
testcase_23 AC 54 ms
63,616 KB
testcase_24 AC 52 ms
63,104 KB
testcase_25 AC 65 ms
69,376 KB
testcase_26 AC 37 ms
52,352 KB
testcase_27 AC 58 ms
68,608 KB
testcase_28 AC 35 ms
51,840 KB
testcase_29 AC 37 ms
51,712 KB
testcase_30 AC 37 ms
52,224 KB
testcase_31 AC 36 ms
52,480 KB
testcase_32 AC 36 ms
52,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)], [])

memo = {}

def dp(x):
    # (i, j)からスタートして何マス歩けるか
    if x in memo:
        return memo[x]
    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)
    memo[x] = res
    return res

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

print(ans)
0