結果

問題 No.2639 Longest Increasing Walk
ユーザー 👑 rin204rin204
提出日時 2024-02-19 21:32:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 99,320 KB
最終ジャッジ日時 2024-09-29 01:28:55
合計ジャッジ時間 4,173 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,016 KB
testcase_01 AC 35 ms
52,832 KB
testcase_02 AC 34 ms
52,636 KB
testcase_03 AC 33 ms
52,760 KB
testcase_04 AC 127 ms
98,060 KB
testcase_05 AC 130 ms
97,364 KB
testcase_06 AC 139 ms
99,212 KB
testcase_07 AC 147 ms
98,644 KB
testcase_08 AC 142 ms
99,320 KB
testcase_09 AC 151 ms
98,232 KB
testcase_10 AC 147 ms
88,620 KB
testcase_11 AC 137 ms
86,908 KB
testcase_12 AC 72 ms
75,688 KB
testcase_13 AC 157 ms
90,768 KB
testcase_14 AC 118 ms
83,336 KB
testcase_15 AC 35 ms
54,020 KB
testcase_16 AC 62 ms
70,520 KB
testcase_17 AC 103 ms
83,268 KB
testcase_18 AC 132 ms
86,140 KB
testcase_19 AC 81 ms
78,100 KB
testcase_20 AC 107 ms
81,080 KB
testcase_21 AC 139 ms
87,612 KB
testcase_22 AC 93 ms
79,644 KB
testcase_23 AC 48 ms
63,100 KB
testcase_24 AC 47 ms
62,240 KB
testcase_25 AC 56 ms
67,668 KB
testcase_26 AC 35 ms
54,532 KB
testcase_27 AC 58 ms
68,932 KB
testcase_28 AC 35 ms
52,364 KB
testcase_29 AC 35 ms
53,544 KB
testcase_30 AC 34 ms
52,480 KB
testcase_31 AC 36 ms
53,204 KB
testcase_32 AC 35 ms
52,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w = map(int, input().split())
A = [list(map(int, input().split())) for _ in range(h)]
dp = [[0] * w for _ in range(h)]
lst = []
for i in range(h):
    for j in range(w):
        x = A[i][j] * h * w + i * w + j
        lst.append(x)

directions = [(-1, 0), (1, 0), (0, -1), (0, 1)]
lst.sort()
for tmp in lst:
    tmp %= h * w
    i = tmp // w
    j = tmp - i * w

    for di, dj in directions:
        ni, nj = i + di, j + dj
        if 0 <= ni < h and 0 <= nj < w and A[i][j] < A[ni][nj]:
            dp[ni][nj] = max(dp[ni][nj], dp[i][j] + 1)

ans = 0
for i in range(h):
    for j in range(w):
        ans = max(ans, dp[i][j])

print(ans + 1)
0