結果

問題 No.2639 Longest Increasing Walk
ユーザー ntudantuda
提出日時 2024-02-23 00:00:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 964 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 108,980 KB
最終ジャッジ日時 2024-09-29 04:32:14
合計ジャッジ時間 4,882 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,408 KB
testcase_01 AC 33 ms
53,088 KB
testcase_02 AC 32 ms
52,804 KB
testcase_03 AC 32 ms
53,160 KB
testcase_04 AC 109 ms
106,580 KB
testcase_05 AC 141 ms
108,980 KB
testcase_06 AC 152 ms
108,156 KB
testcase_07 AC 183 ms
108,224 KB
testcase_08 AC 149 ms
107,604 KB
testcase_09 AC 202 ms
107,208 KB
testcase_10 AC 149 ms
95,228 KB
testcase_11 AC 138 ms
93,020 KB
testcase_12 AC 91 ms
78,084 KB
testcase_13 AC 148 ms
95,032 KB
testcase_14 AC 128 ms
85,516 KB
testcase_15 AC 33 ms
53,076 KB
testcase_16 AC 63 ms
73,684 KB
testcase_17 AC 128 ms
84,208 KB
testcase_18 AC 125 ms
85,028 KB
testcase_19 AC 101 ms
79,288 KB
testcase_20 AC 113 ms
84,428 KB
testcase_21 AC 146 ms
93,744 KB
testcase_22 AC 103 ms
80,240 KB
testcase_23 AC 40 ms
60,944 KB
testcase_24 AC 40 ms
60,048 KB
testcase_25 AC 54 ms
67,992 KB
testcase_26 AC 34 ms
53,684 KB
testcase_27 AC 60 ms
71,448 KB
testcase_28 AC 32 ms
52,700 KB
testcase_29 AC 31 ms
52,936 KB
testcase_30 AC 33 ms
52,520 KB
testcase_31 AC 31 ms
54,580 KB
testcase_32 AC 31 ms
53,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(H)]
E = [[] for _ in range(H * W)]
D = [0] * (H * W)
for h in range(H):
    for w in range(W):
        if h > 0:
            if A[h][w] > A[h - 1][w]:
                E[w + W * (h - 1)].append(w + W * h)
                D[w + W * h] += 1
            if A[h][w] < A[h - 1][w]:
                E[w + W * h].append(w + W * (h - 1))
                D[w + W * (h - 1)] += 1
        if w > 0:
            if A[h][w] > A[h][w - 1]:
                E[w - 1 + W * h].append(w + W * h)
                D[w + W * h] += 1
            if A[h][w] < A[h][w - 1]:
                E[w + W * h].append(w - 1 + W * h)
                D[w - 1 + W * h] += 1

X = [1] * (H * W)
Q = []
for i in range(H * W):
    if D[i] == 0:
        Q.append(i)
while Q:
    a = Q.pop()
    for b in E[a]:
        X[b] = max(X[b],X[a]+1)
        D[b] -= 1
        if D[b] == 0:
            Q.append(b)
print(max(X))

0