結果

問題 No.2639 Longest Increasing Walk
ユーザー vwxyzvwxyz
提出日時 2024-06-01 20:14:12
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 1,337 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 52,252 KB
最終ジャッジ日時 2024-12-22 09:05:50
合計ジャッジ時間 16,115 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 32 ms
10,496 KB
testcase_02 AC 31 ms
10,496 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 779 ms
44,288 KB
testcase_05 AC 1,111 ms
52,064 KB
testcase_06 AC 1,113 ms
51,412 KB
testcase_07 AC 1,272 ms
51,144 KB
testcase_08 AC 1,165 ms
52,252 KB
testcase_09 AC 1,337 ms
52,160 KB
testcase_10 AC 919 ms
29,272 KB
testcase_11 AC 803 ms
28,128 KB
testcase_12 AC 131 ms
12,800 KB
testcase_13 AC 987 ms
31,344 KB
testcase_14 AC 551 ms
21,376 KB
testcase_15 AC 32 ms
10,496 KB
testcase_16 AC 45 ms
10,752 KB
testcase_17 AC 483 ms
22,784 KB
testcase_18 AC 620 ms
23,400 KB
testcase_19 AC 169 ms
13,952 KB
testcase_20 AC 376 ms
18,304 KB
testcase_21 AC 799 ms
28,012 KB
testcase_22 AC 269 ms
16,256 KB
testcase_23 AC 36 ms
10,880 KB
testcase_24 AC 34 ms
10,752 KB
testcase_25 AC 39 ms
10,752 KB
testcase_26 AC 33 ms
10,624 KB
testcase_27 AC 41 ms
10,880 KB
testcase_28 AC 31 ms
10,624 KB
testcase_29 AC 32 ms
10,624 KB
testcase_30 AC 34 ms
10,496 KB
testcase_31 AC 31 ms
10,624 KB
testcase_32 AC 32 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
A=[list(map(int,input().split())) for h in range(H)]
dp=[[1]*W for h in range(H)]
AHW=[(A[h][w],h,w) for h in range(H) for w in range(W)]
AHW.sort()
for a,h,w in AHW:
    for hh,ww in ((h-1,w),(h+1,w),(h,w-1),(h,w+1)):
        if 0<=hh<H and 0<=ww<W and A[hh][ww]<A[h][w]:
            dp[h][w]=max(dp[h][w],dp[hh][ww]+1)
ans=max(dp[h][w] for h in range(H) for w in range(W))
print(ans)
0