結果

問題 No.2639 Longest Increasing Walk
ユーザー satama123satama123
提出日時 2024-02-19 21:48:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 182 ms / 2,000 ms
コード長 938 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 88,764 KB
最終ジャッジ日時 2024-09-29 01:44:37
合計ジャッジ時間 4,822 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,272 KB
testcase_01 AC 41 ms
55,200 KB
testcase_02 AC 41 ms
54,124 KB
testcase_03 AC 42 ms
54,916 KB
testcase_04 AC 155 ms
88,764 KB
testcase_05 AC 165 ms
83,148 KB
testcase_06 AC 170 ms
83,240 KB
testcase_07 AC 170 ms
83,108 KB
testcase_08 AC 172 ms
82,724 KB
testcase_09 AC 182 ms
82,912 KB
testcase_10 AC 162 ms
80,820 KB
testcase_11 AC 153 ms
80,032 KB
testcase_12 AC 87 ms
77,560 KB
testcase_13 AC 163 ms
81,416 KB
testcase_14 AC 132 ms
79,252 KB
testcase_15 AC 44 ms
54,816 KB
testcase_16 AC 73 ms
73,692 KB
testcase_17 AC 132 ms
79,868 KB
testcase_18 AC 139 ms
80,016 KB
testcase_19 AC 96 ms
77,748 KB
testcase_20 AC 114 ms
78,760 KB
testcase_21 AC 150 ms
80,412 KB
testcase_22 AC 105 ms
78,024 KB
testcase_23 AC 60 ms
67,900 KB
testcase_24 AC 60 ms
68,152 KB
testcase_25 AC 69 ms
71,164 KB
testcase_26 AC 44 ms
55,388 KB
testcase_27 AC 70 ms
72,276 KB
testcase_28 AC 43 ms
54,200 KB
testcase_29 AC 42 ms
54,120 KB
testcase_30 AC 42 ms
55,192 KB
testcase_31 AC 41 ms
53,912 KB
testcase_32 AC 41 ms
54,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

H, W = map(int, input().split())

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

indeg = [0] * (H * W)
dh = [0, 1, 0, -1]
dw = [1, 0, -1, 0]

for h in range(H):
    for w in range(W):
        for k in range(4):
            nh = h + dh[k]
            nw = w + dw[k]

            if nh < 0 or nh >= H or nw < 0 or nw >= W : continue
            if A[h][w] < A[nh][nw]:
                indeg[nh * W + nw] += 1

dp = [0] * (H * W)
nxt = deque()
for i in range(H * W):
    if indeg[i] == 0 : nxt.append(i)

while nxt:
    pos = nxt.popleft()
    h = pos // W
    w = pos % W
    for k in range(4):
        nh = h + dh[k]
        nw = w + dw[k]
        if nh < 0 or nh >= H or nw < 0 or nw >= W : continue
        if A[h][w] < A[nh][nw]:
            t = nh * W + nw
            indeg[t] -= 1
            if indeg[t] == 0 : nxt.append((t))
            dp[t] = max(dp[t], dp[pos] + 1)

print(max(dp) + 1)
0