結果
問題 | No.1536 仕切り直し |
ユーザー | H3PO4 |
提出日時 | 2022-10-08 09:09:37 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 204 ms / 2,000 ms |
コード長 | 811 bytes |
コンパイル時間 | 140 ms |
コンパイル使用メモリ | 82,596 KB |
実行使用メモリ | 122,208 KB |
最終ジャッジ日時 | 2024-06-22 07:20:08 |
合計ジャッジ時間 | 2,048 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 33 ms
52,512 KB |
testcase_01 | AC | 37 ms
52,468 KB |
testcase_02 | AC | 35 ms
53,476 KB |
testcase_03 | AC | 60 ms
71,252 KB |
testcase_04 | AC | 106 ms
90,460 KB |
testcase_05 | AC | 157 ms
107,260 KB |
testcase_06 | AC | 58 ms
71,924 KB |
testcase_07 | AC | 58 ms
70,764 KB |
testcase_08 | AC | 106 ms
88,016 KB |
testcase_09 | AC | 112 ms
91,504 KB |
testcase_10 | AC | 204 ms
122,208 KB |
testcase_11 | AC | 87 ms
83,736 KB |
testcase_12 | AC | 156 ms
107,720 KB |
ソースコード
N, M = map(int, input().split()) A = map(int, input().split()) def sign(x): return -1 if (x & 1) else 1 dp = [[-10 ** 18] * (M + 1) for _ in range(N + 1)] partition_flag = [[False] * (M + 1) for _ in range(N + 1)] for j in range(M + 1): dp[0][j] = 0 for i, a in enumerate(A): for j in range(min(i + 1, M + 1)): dp[i + 1][j] = dp[i][j] + sign(j) * a for j in range(1, M + 1): if dp[i + 1][j] < dp[i][j - 1] + sign(j) * a: partition_flag[i + 1][j] = True dp[i + 1][j] = dp[i][j - 1] + sign(j) * a # 復元 max_index = dp[N].index(max(dp[N])) ans = [] j = max_index for i in range(N, 0, -1): if partition_flag[i][j]: ans.append(i - 1) j -= 1 assert j >= 0 ans.reverse() ans.extend([N] * (M - len(ans))) print(*ans, sep="\n")