結果

問題 No.2639 Longest Increasing Walk
ユーザー KoiKoi
提出日時 2024-02-19 21:51:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 268 ms / 2,000 ms
コード長 882 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 110,372 KB
最終ジャッジ日時 2024-09-29 01:50:22
合計ジャッジ時間 5,414 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
55,340 KB
testcase_01 AC 43 ms
54,616 KB
testcase_02 AC 43 ms
55,832 KB
testcase_03 AC 44 ms
54,180 KB
testcase_04 AC 142 ms
92,484 KB
testcase_05 AC 206 ms
110,372 KB
testcase_06 AC 206 ms
109,992 KB
testcase_07 AC 248 ms
109,908 KB
testcase_08 AC 211 ms
110,148 KB
testcase_09 AC 268 ms
110,252 KB
testcase_10 AC 184 ms
94,064 KB
testcase_11 AC 177 ms
92,892 KB
testcase_12 AC 89 ms
79,248 KB
testcase_13 AC 212 ms
96,172 KB
testcase_14 AC 156 ms
87,508 KB
testcase_15 AC 43 ms
54,748 KB
testcase_16 AC 75 ms
74,248 KB
testcase_17 AC 149 ms
85,788 KB
testcase_18 AC 152 ms
86,936 KB
testcase_19 AC 96 ms
79,856 KB
testcase_20 AC 122 ms
85,120 KB
testcase_21 AC 192 ms
93,088 KB
testcase_22 AC 122 ms
80,272 KB
testcase_23 AC 58 ms
66,316 KB
testcase_24 AC 60 ms
66,732 KB
testcase_25 AC 68 ms
71,376 KB
testcase_26 AC 43 ms
55,532 KB
testcase_27 AC 72 ms
72,772 KB
testcase_28 AC 41 ms
54,188 KB
testcase_29 AC 43 ms
55,396 KB
testcase_30 AC 42 ms
53,964 KB
testcase_31 AC 41 ms
54,140 KB
testcase_32 AC 43 ms
54,676 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
H,W=map(int,input().split())
A=[list(map(int,input().split())) for _ in range(H)]
G=[[] for _ in range(H*W)]
into_num=[0]*(H*W)
def xy_to_x_y(xy):
    return xy//W,xy%W
def x_y_to_xy(x,y):
    return x*W+y
dx=[0,1,0,-1]
dy=[1,0,-1,0]
for i in range(H):
    for j in range(W):
        for k in range(4):
            new_x=i+dx[k]
            new_y=j+dy[k]
            if(0<=new_x<H and 0<=new_y<W and A[i][j]<A[new_x][new_y]):
                ij=x_y_to_xy(i,j)
                new_xy=x_y_to_xy(new_x,new_y)
                G[ij].append(new_xy)
                into_num[new_xy]+=1
que=deque()
dp=[0]*(H*W)
for i in range(H*W):
    if(into_num[i]==0):
        que.append(i)
while len(que):
    p=que.popleft()
    for q in G[p]:
        dp[q]=max(dp[q],dp[p]+1)
        into_num[q]-=1
        if(into_num[q]==0):
            que.append(q)
print(max(dp)+1)
0