結果

問題 No.2639 Longest Increasing Walk
ユーザー shobonvipshobonvip
提出日時 2024-02-19 18:24:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,687 ms / 2,000 ms
コード長 542 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 333,208 KB
最終ジャッジ日時 2024-09-29 01:13:04
合計ジャッジ時間 6,412 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,820 KB
testcase_01 AC 38 ms
53,896 KB
testcase_02 AC 40 ms
52,460 KB
testcase_03 AC 39 ms
52,368 KB
testcase_04 AC 145 ms
82,088 KB
testcase_05 AC 178 ms
85,996 KB
testcase_06 AC 182 ms
84,572 KB
testcase_07 AC 254 ms
90,960 KB
testcase_08 AC 193 ms
87,072 KB
testcase_09 AC 1,687 ms
333,208 KB
testcase_10 AC 157 ms
80,452 KB
testcase_11 AC 148 ms
79,828 KB
testcase_12 AC 89 ms
76,844 KB
testcase_13 AC 161 ms
80,980 KB
testcase_14 AC 133 ms
78,892 KB
testcase_15 AC 38 ms
53,212 KB
testcase_16 AC 71 ms
74,456 KB
testcase_17 AC 131 ms
79,196 KB
testcase_18 AC 147 ms
79,552 KB
testcase_19 AC 98 ms
77,492 KB
testcase_20 AC 120 ms
78,612 KB
testcase_21 AC 151 ms
79,948 KB
testcase_22 AC 112 ms
78,568 KB
testcase_23 AC 55 ms
64,772 KB
testcase_24 AC 50 ms
63,384 KB
testcase_25 AC 63 ms
70,024 KB
testcase_26 AC 40 ms
53,692 KB
testcase_27 AC 67 ms
71,256 KB
testcase_28 AC 37 ms
52,924 KB
testcase_29 AC 39 ms
52,620 KB
testcase_30 AC 37 ms
52,820 KB
testcase_31 AC 37 ms
52,512 KB
testcase_32 AC 38 ms
52,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(998244)

h,w = map(int,input().split())
a = [list(map(int,input().split())) for i in range(h)]
dp = [[0]*w for i in range(h)]
seen = [[0]*w for i in range(h)]

def dfs(i, j):
	if seen[i][j]:
		return dp[i][j]
	
	ret = 1
	for x, y in [(i+1, j), (i-1, j), (i, j+1), (i, j-1)]:
		if 0 <= x < h and 0 <= y < w and a[x][y] > a[i][j]:
			ret = max(ret, dfs(x, y) + 1)
	dp[i][j] = ret
	seen[i][j] = 1
	return ret

ans = 0
for i in range(h-1,-1,-1):
	for j in range(w-1,-1,-1):
		ans = max(ans, dfs(i, j))

print(ans)
0