結果
問題 | No.2639 Longest Increasing Walk |
ユーザー | 👑 rin204 |
提出日時 | 2024-02-19 21:32:51 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 157 ms / 2,000 ms |
コード長 | 647 bytes |
コンパイル時間 | 157 ms |
コンパイル使用メモリ | 82,308 KB |
実行使用メモリ | 99,320 KB |
最終ジャッジ日時 | 2024-09-29 01:28:55 |
合計ジャッジ時間 | 4,173 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 33 |
ソースコード
h, w = map(int, input().split()) A = [list(map(int, input().split())) for _ in range(h)] dp = [[0] * w for _ in range(h)] lst = [] for i in range(h): for j in range(w): x = A[i][j] * h * w + i * w + j lst.append(x) directions = [(-1, 0), (1, 0), (0, -1), (0, 1)] lst.sort() for tmp in lst: tmp %= h * w i = tmp // w j = tmp - i * w for di, dj in directions: ni, nj = i + di, j + dj if 0 <= ni < h and 0 <= nj < w and A[i][j] < A[ni][nj]: dp[ni][nj] = max(dp[ni][nj], dp[i][j] + 1) ans = 0 for i in range(h): for j in range(w): ans = max(ans, dp[i][j]) print(ans + 1)