結果

問題 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 742 ms
44,544 KB
testcase_05 AC 1,044 ms
52,164 KB
testcase_06 AC 1,027 ms
51,560 KB
testcase_07 AC 1,166 ms
51,336 KB
testcase_08 AC 1,096 ms
52,000 KB
testcase_09 AC 1,133 ms
51,960 KB
testcase_10 AC 740 ms
29,860 KB
testcase_11 AC 675 ms
28,788 KB
testcase_12 AC 111 ms
13,568 KB
testcase_13 AC 750 ms
32,428 KB
testcase_14 AC 418 ms
21,944 KB
testcase_15 AC 26 ms
10,880 KB
testcase_16 AC 36 ms
11,008 KB
testcase_17 AC 399 ms
23,472 KB
testcase_18 AC 533 ms
23,896 KB
testcase_19 AC 142 ms
14,336 KB
testcase_20 AC 297 ms
18,916 KB
testcase_21 AC 608 ms
29,124 KB
testcase_22 AC 216 ms
16,640 KB
testcase_23 AC 29 ms
10,880 KB
testcase_24 AC 29 ms
11,008 KB
testcase_25 AC 31 ms
10,880 KB
testcase_26 AC 26 ms
10,752 KB
testcase_27 AC 32 ms
11,008 KB
testcase_28 AC 25 ms
10,752 KB
testcase_29 AC 25 ms
10,880 KB
testcase_30 AC 25 ms
10,752 KB
testcase_31 AC 25 ms
10,752 KB
testcase_32 AC 25 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

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