結果

問題 No.2639 Longest Increasing Walk
ユーザー 310icecrystal310icecrystal
提出日時 2024-02-28 15:57:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 525 ms / 2,000 ms
コード長 509 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 124,268 KB
最終ジャッジ日時 2024-09-29 12:25:02
合計ジャッジ時間 8,320 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 37 ms
52,352 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 37 ms
52,480 KB
testcase_04 AC 202 ms
119,168 KB
testcase_05 AC 210 ms
122,240 KB
testcase_06 AC 233 ms
123,396 KB
testcase_07 AC 361 ms
124,096 KB
testcase_08 AC 244 ms
123,752 KB
testcase_09 AC 406 ms
124,268 KB
testcase_10 AC 484 ms
91,364 KB
testcase_11 AC 445 ms
91,452 KB
testcase_12 AC 114 ms
79,232 KB
testcase_13 AC 525 ms
107,172 KB
testcase_14 AC 334 ms
92,952 KB
testcase_15 AC 37 ms
52,608 KB
testcase_16 AC 61 ms
67,328 KB
testcase_17 AC 226 ms
92,928 KB
testcase_18 AC 369 ms
97,084 KB
testcase_19 AC 132 ms
80,832 KB
testcase_20 AC 233 ms
80,972 KB
testcase_21 AC 478 ms
90,496 KB
testcase_22 AC 178 ms
83,036 KB
testcase_23 AC 52 ms
62,848 KB
testcase_24 AC 46 ms
61,744 KB
testcase_25 AC 56 ms
67,792 KB
testcase_26 AC 35 ms
53,632 KB
testcase_27 AC 56 ms
68,140 KB
testcase_28 AC 36 ms
52,700 KB
testcase_29 AC 37 ms
53,140 KB
testcase_30 AC 37 ms
52,552 KB
testcase_31 AC 36 ms
53,132 KB
testcase_32 AC 35 ms
52,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W = map(int,input().split())
A = [list(map(int,input().split())) for _ in range(H)]

pairs = []
for i in range(H):
    for j in range(W):
        pairs.append((A[i][j],i,j))
pairs.sort(reverse=True)

dp = [[-1]*W for _ in range(H)]
dij = [(-1,0),(1,0),(0,-1),(0,1)]
for a,i,j in pairs:
    maximum = 0
    for di,dj in dij:
        if 0 <= i+di <= H-1 and 0 <= j+dj <= W-1 and a < A[i+di][j+dj]:
            maximum = max(maximum,dp[i+di][j+dj])
    dp[i][j] = maximum+1

print(max([max(li) for li in dp]))
0