結果

問題 No.2639 Longest Increasing Walk
ユーザー nikoro256nikoro256
提出日時 2024-02-19 21:37:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 461 ms / 2,000 ms
コード長 478 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 82,736 KB
実行使用メモリ 123,716 KB
最終ジャッジ日時 2024-09-29 01:34:36
合計ジャッジ時間 6,932 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,620 KB
testcase_01 AC 32 ms
53,348 KB
testcase_02 AC 33 ms
52,200 KB
testcase_03 AC 33 ms
52,280 KB
testcase_04 AC 185 ms
119,140 KB
testcase_05 AC 189 ms
121,920 KB
testcase_06 AC 215 ms
123,412 KB
testcase_07 AC 330 ms
123,524 KB
testcase_08 AC 224 ms
123,540 KB
testcase_09 AC 379 ms
123,716 KB
testcase_10 AC 448 ms
101,036 KB
testcase_11 AC 389 ms
91,420 KB
testcase_12 AC 99 ms
79,176 KB
testcase_13 AC 461 ms
107,580 KB
testcase_14 AC 294 ms
93,096 KB
testcase_15 AC 33 ms
52,900 KB
testcase_16 AC 55 ms
68,164 KB
testcase_17 AC 212 ms
93,260 KB
testcase_18 AC 322 ms
96,648 KB
testcase_19 AC 116 ms
80,756 KB
testcase_20 AC 197 ms
81,164 KB
testcase_21 AC 414 ms
90,736 KB
testcase_22 AC 170 ms
82,192 KB
testcase_23 AC 49 ms
65,408 KB
testcase_24 AC 43 ms
63,160 KB
testcase_25 AC 50 ms
66,788 KB
testcase_26 AC 37 ms
53,196 KB
testcase_27 AC 53 ms
67,908 KB
testcase_28 AC 32 ms
52,816 KB
testcase_29 AC 32 ms
53,380 KB
testcase_30 AC 32 ms
53,232 KB
testcase_31 AC 31 ms
52,936 KB
testcase_32 AC 32 ms
53,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
A=[]
for _ in range(H):
    A.append(list(map(int,input().split())))
lis=[]
for i in range(H):
    for j in range(W):
        lis.append((A[i][j],i,j))
lis.sort(reverse=True)
d=[[1,0],[-1,0],[0,1],[0,-1]]
dp=[[1]*W for _ in range(H)]
for a,i,j in lis:
    for dx,dy in d:
        if 0<=i+dx<H and 0<=j+dy<W and A[i+dx][j+dy]>A[i][j]:
            dp[i][j]=max(dp[i+dx][j+dy]+1,dp[i][j])
ans=0
for i in range(H):
    ans=max(max(dp[i]),ans)
print(ans)
0