結果
| 問題 | No.2639 Longest Increasing Walk |
| コンテスト | |
| ユーザー |
寝癖
|
| 提出日時 | 2024-02-19 23:18:46 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
RE
(最新)
AC
(最初)
|
| 実行時間 | - |
| コード長 | 613 bytes |
| 記録 | |
| コンパイル時間 | 297 ms |
| コンパイル使用メモリ | 12,800 KB |
| 実行使用メモリ | 50,720 KB |
| 最終ジャッジ日時 | 2024-09-29 03:01:20 |
| 合計ジャッジ時間 | 6,494 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 28 RE * 5 |
ソースコード
from functools import lru_cache
from sys import setrecursionlimit
setrecursionlimit(10**5)
H, W = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(H)]
@lru_cache(maxsize=None)
def dfs(i, j):
# 4方向全てを見て、大きいものがなければ1を返す
res = 1
for dx, dy in ((1, 0), (0, 1), (-1, 0), (0, -1)):
ni, nj = i + dx, j + dy
if 0 <= ni < H and 0 <= nj < W and A[ni][nj] > A[i][j]:
res = max(res, dfs(ni, nj) + 1)
return res
ans = 0
for i in range(H):
for j in range(W):
ans = max(dfs(i, j), ans)
print(ans)
寝癖