結果

問題 No.2639 Longest Increasing Walk
ユーザー timitimi
提出日時 2024-02-19 21:59:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 398 ms / 2,000 ms
コード長 584 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 137,492 KB
最終ジャッジ日時 2024-09-29 01:58:16
合計ジャッジ時間 6,547 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,620 KB
testcase_01 AC 38 ms
52,952 KB
testcase_02 AC 39 ms
52,404 KB
testcase_03 AC 42 ms
53,144 KB
testcase_04 AC 142 ms
92,128 KB
testcase_05 AC 326 ms
137,040 KB
testcase_06 AC 322 ms
136,376 KB
testcase_07 AC 398 ms
136,564 KB
testcase_08 AC 315 ms
137,324 KB
testcase_09 AC 393 ms
137,492 KB
testcase_10 AC 318 ms
112,496 KB
testcase_11 AC 292 ms
105,916 KB
testcase_12 AC 89 ms
81,840 KB
testcase_13 AC 344 ms
117,272 KB
testcase_14 AC 219 ms
102,648 KB
testcase_15 AC 38 ms
52,628 KB
testcase_16 AC 56 ms
66,472 KB
testcase_17 AC 103 ms
80,772 KB
testcase_18 AC 249 ms
104,540 KB
testcase_19 AC 99 ms
84,928 KB
testcase_20 AC 164 ms
93,080 KB
testcase_21 AC 283 ms
106,820 KB
testcase_22 AC 135 ms
87,032 KB
testcase_23 AC 51 ms
63,284 KB
testcase_24 AC 50 ms
63,508 KB
testcase_25 AC 67 ms
70,656 KB
testcase_26 AC 39 ms
53,032 KB
testcase_27 AC 66 ms
71,972 KB
testcase_28 AC 38 ms
52,064 KB
testcase_29 AC 39 ms
53,492 KB
testcase_30 AC 38 ms
52,824 KB
testcase_31 AC 39 ms
52,496 KB
testcase_32 AC 37 ms
53,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W=map(int, input().split())
A=[];B=[];D={}

for i in range(H):
  AA=list(map(int, input().split()))
  A.append(AA)
  for j in range(W):
    a=AA[j]
    if a not in D:
      D[a]=[]
      B.append(a)
    D[a].append((i,j))
B=sorted(B)

dp=[[1]*W for _ in range(H)]
dy,dx=[1,-1,0,0],[0,0,1,-1]
for b in B:
  if b==1:
    continue 
  for y,x in D[b]:
    for i in range(4):
      ny,nx=y+dy[i],x+dx[i]
      if 0<=ny<H and 0<=nx<W and A[ny][nx]<A[y][x]:
        dp[y][x]=max(dp[y][x],dp[ny][nx]+1)
ans=0
for h in range(H):
  for w in range(W):
    ans=max(ans,dp[h][w])
print(ans)
    
0