結果

問題 No.2639 Longest Increasing Walk
ユーザー titiatitia
提出日時 2024-02-21 02:58:29
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,166 ms / 2,000 ms
コード長 547 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 52,164 KB
最終ジャッジ日時 2024-09-29 04:11:49
合計ジャッジ時間 12,888 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 33
権限があれば一括ダウンロードができます

ソースコード

diff #

from operator import itemgetter

H,W=map(int,input().split())

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

LIST=[]
for i in range(H):
    for j in range(W):
        LIST.append((A[i][j],i,j))

LIST.sort(key=itemgetter(0),reverse=True)

DP=[[1]*W for i in range(H)]

for w,i,j in LIST:
    for x,y in [(i+1,j),(i-1,j),(i,j+1),(i,j-1)]:
        if 0<=x<H and 0<=y<W:
            if A[x][y]>A[i][j]:
                DP[i][j]=max(DP[i][j],DP[x][y]+1)

ANS=0
for i in range(H):
    for j in range(W):
        ANS=max(ANS,DP[i][j])

print(ANS)
0