結果
問題 | No.2639 Longest Increasing Walk |
ユーザー | satama123 |
提出日時 | 2024-02-19 21:46:47 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 940 bytes |
コンパイル時間 | 385 ms |
コンパイル使用メモリ | 82,040 KB |
実行使用メモリ | 88,844 KB |
最終ジャッジ日時 | 2024-09-29 01:41:58 |
合計ジャッジ時間 | 4,785 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
53,728 KB |
testcase_01 | AC | 41 ms
54,564 KB |
testcase_02 | AC | 43 ms
54,752 KB |
testcase_03 | AC | 41 ms
55,724 KB |
testcase_04 | AC | 160 ms
88,844 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 42 ms
54,944 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 43 ms
54,420 KB |
testcase_29 | WA | - |
testcase_30 | AC | 43 ms
54,336 KB |
testcase_31 | WA | - |
testcase_32 | AC | 43 ms
54,660 KB |
ソースコード
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[pos] == 0 : nxt.append((t)) dp[t] = max(dp[t], dp[pos] + 1) print(max(dp) + 1)