結果

問題 No.2639 Longest Increasing Walk
ユーザー miho-4miho-4
提出日時 2024-02-19 22:30:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 450 ms / 2,000 ms
コード長 443 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 122,408 KB
最終ジャッジ日時 2024-09-29 02:23:10
合計ジャッジ時間 6,727 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,536 KB
testcase_01 AC 33 ms
53,108 KB
testcase_02 AC 33 ms
52,788 KB
testcase_03 AC 32 ms
53,248 KB
testcase_04 AC 175 ms
119,244 KB
testcase_05 AC 204 ms
121,888 KB
testcase_06 AC 213 ms
122,108 KB
testcase_07 AC 364 ms
121,992 KB
testcase_08 AC 232 ms
122,072 KB
testcase_09 AC 382 ms
122,408 KB
testcase_10 AC 445 ms
101,344 KB
testcase_11 AC 385 ms
91,612 KB
testcase_12 AC 96 ms
78,996 KB
testcase_13 AC 450 ms
107,544 KB
testcase_14 AC 277 ms
92,956 KB
testcase_15 AC 34 ms
52,904 KB
testcase_16 AC 56 ms
70,964 KB
testcase_17 AC 208 ms
92,980 KB
testcase_18 AC 312 ms
96,880 KB
testcase_19 AC 127 ms
80,980 KB
testcase_20 AC 195 ms
81,656 KB
testcase_21 AC 373 ms
91,004 KB
testcase_22 AC 165 ms
82,288 KB
testcase_23 AC 45 ms
63,364 KB
testcase_24 AC 42 ms
62,316 KB
testcase_25 AC 52 ms
68,592 KB
testcase_26 AC 33 ms
53,636 KB
testcase_27 AC 55 ms
69,652 KB
testcase_28 AC 33 ms
52,156 KB
testcase_29 AC 33 ms
52,304 KB
testcase_30 AC 33 ms
52,852 KB
testcase_31 AC 31 ms
52,588 KB
testcase_32 AC 30 ms
52,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
L=[list(map(int,input().split())) for _ in range(H)]
q=[]
for h in range(H):
  for w in range(W):
    q.append((L[h][w],h,w))
dp=[[1]*W for _ in range(H)]
q.sort()
dhw=[(1,0),(-1,0),(0,1),(0,-1)]
ans=1
for x,h,w in q:
  for dh,dw in dhw:
    if 0<=h+dh<H and 0<=w+dw<W and L[h][w]<L[h+dh][w+dw]:
      dp[h+dh][w+dw]=max(dp[h+dh][w+dw],dp[h][w]+1)
      if ans<dp[h+dh][w+dw]:
        ans=dp[h+dh][w+dw]
print(ans)
0