結果

問題 No.2639 Longest Increasing Walk
ユーザー shobonvipshobonvip
提出日時 2024-02-19 18:23:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,582 ms / 2,000 ms
コード長 526 bytes
コンパイル時間 368 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 348,040 KB
最終ジャッジ日時 2024-09-29 01:12:57
合計ジャッジ時間 7,003 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,964 KB
testcase_01 AC 41 ms
53,188 KB
testcase_02 AC 36 ms
52,712 KB
testcase_03 AC 36 ms
53,316 KB
testcase_04 AC 140 ms
82,212 KB
testcase_05 AC 165 ms
85,124 KB
testcase_06 AC 178 ms
87,260 KB
testcase_07 AC 1,582 ms
348,040 KB
testcase_08 AC 186 ms
85,876 KB
testcase_09 AC 247 ms
87,436 KB
testcase_10 AC 243 ms
81,924 KB
testcase_11 AC 208 ms
80,892 KB
testcase_12 AC 103 ms
77,116 KB
testcase_13 AC 217 ms
81,872 KB
testcase_14 AC 187 ms
80,608 KB
testcase_15 AC 39 ms
53,236 KB
testcase_16 AC 78 ms
76,816 KB
testcase_17 AC 179 ms
80,008 KB
testcase_18 AC 191 ms
81,412 KB
testcase_19 AC 127 ms
78,268 KB
testcase_20 AC 169 ms
79,652 KB
testcase_21 AC 222 ms
81,832 KB
testcase_22 AC 164 ms
79,040 KB
testcase_23 AC 50 ms
62,784 KB
testcase_24 AC 49 ms
64,164 KB
testcase_25 AC 56 ms
67,332 KB
testcase_26 AC 38 ms
53,312 KB
testcase_27 AC 65 ms
71,300 KB
testcase_28 AC 35 ms
53,812 KB
testcase_29 AC 36 ms
52,928 KB
testcase_30 AC 37 ms
52,404 KB
testcase_31 AC 36 ms
53,124 KB
testcase_32 AC 36 ms
52,548 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