結果

問題 No.2639 Longest Increasing Walk
ユーザー ゼットゼット
提出日時 2024-02-19 21:57:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 502 ms / 2,000 ms
コード長 524 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,380 KB
実行使用メモリ 124,088 KB
最終ジャッジ日時 2024-09-29 01:56:28
合計ジャッジ時間 7,128 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,780 KB
testcase_01 AC 34 ms
52,520 KB
testcase_02 AC 35 ms
53,116 KB
testcase_03 AC 35 ms
52,728 KB
testcase_04 AC 199 ms
119,068 KB
testcase_05 AC 232 ms
121,956 KB
testcase_06 AC 234 ms
123,548 KB
testcase_07 AC 372 ms
123,636 KB
testcase_08 AC 243 ms
124,068 KB
testcase_09 AC 384 ms
124,088 KB
testcase_10 AC 471 ms
100,812 KB
testcase_11 AC 442 ms
96,396 KB
testcase_12 AC 106 ms
79,780 KB
testcase_13 AC 502 ms
107,408 KB
testcase_14 AC 296 ms
93,152 KB
testcase_15 AC 35 ms
53,252 KB
testcase_16 AC 58 ms
68,408 KB
testcase_17 AC 210 ms
93,320 KB
testcase_18 AC 352 ms
96,928 KB
testcase_19 AC 127 ms
80,716 KB
testcase_20 AC 219 ms
87,844 KB
testcase_21 AC 439 ms
97,004 KB
testcase_22 AC 176 ms
82,592 KB
testcase_23 AC 50 ms
63,656 KB
testcase_24 AC 46 ms
62,908 KB
testcase_25 AC 55 ms
68,596 KB
testcase_26 AC 35 ms
53,260 KB
testcase_27 AC 58 ms
68,300 KB
testcase_28 AC 35 ms
52,920 KB
testcase_29 AC 34 ms
53,288 KB
testcase_30 AC 35 ms
52,656 KB
testcase_31 AC 34 ms
53,492 KB
testcase_32 AC 34 ms
52,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int,input().split())
A=[list(map(int,input().split())) for i in range(H)]
L=[]
for i in range(H):
  for j in range(W):
    L.append((A[i][j],i,j))
L.sort()
dp=[[1]*W for i in range(H)]
DX=[1,0,-1,0]
DY=[0,1,0,-1]
for i in range(len(L)):
  x,y=L[i][1],L[i][2]
  for dx,dy in zip(DX,DY):
    x2,y2=x+dx,y+dy
    if x2<0 or x2>=H or y2<0 or y2>=W:
      continue
    if A[x][y]<=A[x2][y2]:
      continue
    dp[x][y]=max(dp[x][y],dp[x2][y2]+1)
result=0
for i in range(H):
  result=max(result,max(dp[i]))
print(result)
0