結果

問題 No.2639 Longest Increasing Walk
ユーザー shobonvipshobonvip
提出日時 2024-02-19 18:24:05
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,117 ms / 2,000 ms
コード長 526 bytes
コンパイル時間 251 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 166,144 KB
最終ジャッジ日時 2024-09-29 01:13:14
合計ジャッジ時間 9,093 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,624 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 450 ms
24,704 KB
testcase_05 AC 644 ms
32,896 KB
testcase_06 AC 669 ms
32,512 KB
testcase_07 AC 1,117 ms
166,144 KB
testcase_08 AC 659 ms
32,640 KB
testcase_09 AC 919 ms
33,776 KB
testcase_10 AC 347 ms
18,560 KB
testcase_11 AC 313 ms
17,792 KB
testcase_12 AC 72 ms
11,776 KB
testcase_13 AC 375 ms
19,200 KB
testcase_14 AC 218 ms
15,744 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 31 ms
10,880 KB
testcase_17 AC 225 ms
15,616 KB
testcase_18 AC 260 ms
16,512 KB
testcase_19 AC 91 ms
12,288 KB
testcase_20 AC 170 ms
14,208 KB
testcase_21 AC 313 ms
17,792 KB
testcase_22 AC 126 ms
13,312 KB
testcase_23 AC 28 ms
10,752 KB
testcase_24 AC 27 ms
10,624 KB
testcase_25 AC 28 ms
10,752 KB
testcase_26 AC 25 ms
10,752 KB
testcase_27 AC 29 ms
11,008 KB
testcase_28 AC 25 ms
10,752 KB
testcase_29 AC 25 ms
10,752 KB
testcase_30 AC 26 ms
10,752 KB
testcase_31 AC 26 ms
10,752 KB
testcase_32 AC 26 ms
10,624 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):
	for j in range(w):
		ans = max(ans, dfs(i, j))

print(ans)
0