結果

問題 No.2639 Longest Increasing Walk
ユーザー こめだわらこめだわら
提出日時 2024-02-19 21:45:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 439 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 96,416 KB
最終ジャッジ日時 2024-09-29 01:40:40
合計ジャッジ時間 5,615 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,596 KB
testcase_01 AC 37 ms
52,432 KB
testcase_02 AC 37 ms
52,768 KB
testcase_03 AC 38 ms
53,832 KB
testcase_04 AC 142 ms
90,096 KB
testcase_05 AC 192 ms
95,664 KB
testcase_06 AC 194 ms
95,824 KB
testcase_07 AC 245 ms
95,032 KB
testcase_08 AC 197 ms
95,848 KB
testcase_09 AC 273 ms
96,416 KB
testcase_10 AC 318 ms
88,788 KB
testcase_11 AC 250 ms
81,824 KB
testcase_12 AC 88 ms
74,684 KB
testcase_13 AC 308 ms
83,900 KB
testcase_14 AC 194 ms
79,360 KB
testcase_15 AC 37 ms
52,320 KB
testcase_16 AC 59 ms
68,772 KB
testcase_17 AC 138 ms
79,672 KB
testcase_18 AC 217 ms
80,620 KB
testcase_19 AC 100 ms
77,304 KB
testcase_20 AC 162 ms
78,800 KB
testcase_21 AC 244 ms
81,292 KB
testcase_22 AC 126 ms
78,208 KB
testcase_23 AC 49 ms
63,560 KB
testcase_24 AC 48 ms
62,144 KB
testcase_25 AC 59 ms
66,584 KB
testcase_26 AC 39 ms
52,808 KB
testcase_27 AC 60 ms
66,392 KB
testcase_28 AC 38 ms
53,568 KB
testcase_29 AC 38 ms
52,268 KB
testcase_30 AC 37 ms
52,688 KB
testcase_31 AC 38 ms
52,388 KB
testcase_32 AC 38 ms
53,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

B=list(range(H*W))
B.sort(key=lambda x:A[x//W][x%W])
D=[[1]*W for _ in range(H)]

dd=[(0,1),(1,0),(-1,0),(0,-1)]

for p in B:
    i,j=divmod(p,W)
    for di,dj in dd:
        ni=i+di
        nj=j+dj
        if 0<=ni<H and 0<=nj<W:
            if A[ni][nj]>A[i][j]:
                D[ni][nj]=max(D[ni][nj],D[i][j]+1)

print(max(max(D[i]) for i in range(H)))
0