結果

問題 No.2639 Longest Increasing Walk
ユーザー tipstar0125tipstar0125
提出日時 2024-02-20 14:27:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 210 ms / 2,000 ms
コード長 997 bytes
コンパイル時間 261 ms
コンパイル使用メモリ 82,488 KB
実行使用メモリ 99,196 KB
最終ジャッジ日時 2024-09-29 03:43:09
合計ジャッジ時間 5,049 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,632 KB
testcase_01 AC 39 ms
54,320 KB
testcase_02 AC 39 ms
53,724 KB
testcase_03 AC 38 ms
52,736 KB
testcase_04 AC 188 ms
99,196 KB
testcase_05 AC 190 ms
82,852 KB
testcase_06 AC 195 ms
82,540 KB
testcase_07 AC 206 ms
82,948 KB
testcase_08 AC 200 ms
83,076 KB
testcase_09 AC 210 ms
83,312 KB
testcase_10 AC 178 ms
81,584 KB
testcase_11 AC 168 ms
81,044 KB
testcase_12 AC 99 ms
77,208 KB
testcase_13 AC 184 ms
82,068 KB
testcase_14 AC 143 ms
79,472 KB
testcase_15 AC 41 ms
53,540 KB
testcase_16 AC 85 ms
76,492 KB
testcase_17 AC 147 ms
79,560 KB
testcase_18 AC 149 ms
79,796 KB
testcase_19 AC 100 ms
76,968 KB
testcase_20 AC 128 ms
78,520 KB
testcase_21 AC 168 ms
80,992 KB
testcase_22 AC 120 ms
78,352 KB
testcase_23 AC 69 ms
70,932 KB
testcase_24 AC 67 ms
70,008 KB
testcase_25 AC 78 ms
74,260 KB
testcase_26 AC 42 ms
54,520 KB
testcase_27 AC 78 ms
75,448 KB
testcase_28 AC 38 ms
53,280 KB
testcase_29 AC 40 ms
53,480 KB
testcase_30 AC 39 ms
53,216 KB
testcase_31 AC 39 ms
53,868 KB
testcase_32 AC 39 ms
53,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

indegs=[[0 for _ in range(W)] for _ in range(H)]
for i in range(H):
    for j in range(W):
        for (di,dj) in [(1,0),(-1,0),(0,1),(0,-1)]:
            ni=i+di
            nj=j+dj
            if ni not in range(H) or nj not in range(W):continue
            if A[i][j]>A[ni][nj]:indegs[i][j]+=1

Q=[]
INF=int(1e18)
dist=[[0 for _ in range(W)] for _ in range(H)]
for i in range(H):
    for j in range(W):
        if indegs[i][j]==0:
            Q.append((i,j))
            dist[i][j]=1

while len(Q):
    i,j=Q.pop()
    for (di,dj) in [(1,0),(-1,0),(0,1),(0,-1)]:
        ni=i+di
        nj=j+dj
        if ni not in range(H) or nj not in range(W):continue
        if A[i][j]>=A[ni][nj]:continue
        indegs[ni][nj]-=1
        dist[ni][nj]=max(dist[ni][nj],dist[i][j]+1)
        if indegs[ni][nj]==0:Q.append((ni,nj))

ans=0
for i in range(H):
    for j in range(W):
        ans=max(ans,dist[i][j])
print(ans)
0