結果

問題 No.2639 Longest Increasing Walk
ユーザー rlangevinrlangevin
提出日時 2024-02-21 12:16:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 569 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,720 KB
実行使用メモリ 113,332 KB
最終ジャッジ日時 2024-09-29 04:13:37
合計ジャッジ時間 7,617 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,232 KB
testcase_01 AC 39 ms
53,652 KB
testcase_02 AC 38 ms
52,032 KB
testcase_03 AC 38 ms
52,680 KB
testcase_04 AC 202 ms
111,788 KB
testcase_05 AC 231 ms
113,332 KB
testcase_06 AC 230 ms
112,008 KB
testcase_07 AC 408 ms
112,804 KB
testcase_08 AC 249 ms
112,144 KB
testcase_09 AC 430 ms
112,472 KB
testcase_10 AC 547 ms
98,344 KB
testcase_11 AC 477 ms
93,596 KB
testcase_12 AC 100 ms
74,164 KB
testcase_13 AC 569 ms
102,280 KB
testcase_14 AC 325 ms
91,184 KB
testcase_15 AC 39 ms
52,608 KB
testcase_16 AC 57 ms
65,124 KB
testcase_17 AC 229 ms
91,068 KB
testcase_18 AC 369 ms
94,800 KB
testcase_19 AC 126 ms
80,708 KB
testcase_20 AC 242 ms
83,596 KB
testcase_21 AC 480 ms
92,472 KB
testcase_22 AC 190 ms
82,420 KB
testcase_23 AC 49 ms
62,336 KB
testcase_24 AC 50 ms
62,600 KB
testcase_25 AC 62 ms
69,332 KB
testcase_26 AC 40 ms
54,108 KB
testcase_27 AC 64 ms
69,884 KB
testcase_28 AC 38 ms
53,740 KB
testcase_29 AC 39 ms
53,348 KB
testcase_30 AC 39 ms
52,748 KB
testcase_31 AC 39 ms
53,644 KB
testcase_32 AC 37 ms
52,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W = map(int, input().split())
A = []
D = []
for i in range(H):
    A.append(list(map(int, input().split())))
    for j in range(W):
        D.append((A[i][j], i, j))
        
D.sort()
B = [[1] * W for _ in range(H)]
dx = [1, 0, -1, 0]
dy = [0, 1, 0, -1]
for a, px, py in D:
    for k in range(4):
        x = px + dx[k]
        y = py + dy[k]
        if x < 0 or x > H - 1 or y < 0 or y > W - 1:
            continue
        if A[x][y] >= a:
            continue
        B[px][py] = max(B[px][py], B[x][y] + 1)
        
print(max([max(B[i]) for i in range(H)]))        
0