結果
問題 | No.1536 仕切り直し |
ユーザー | ygd. |
提出日時 | 2021-06-12 20:45:04 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 145 ms / 2,000 ms |
コード長 | 1,511 bytes |
コンパイル時間 | 239 ms |
コンパイル使用メモリ | 82,120 KB |
実行使用メモリ | 91,008 KB |
最終ジャッジ日時 | 2024-05-09 23:49:57 |
合計ジャッジ時間 | 2,428 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 47 ms
52,224 KB |
testcase_01 | AC | 46 ms
52,096 KB |
testcase_02 | AC | 45 ms
52,352 KB |
testcase_03 | AC | 62 ms
64,128 KB |
testcase_04 | AC | 93 ms
74,112 KB |
testcase_05 | AC | 127 ms
90,896 KB |
testcase_06 | AC | 67 ms
66,560 KB |
testcase_07 | AC | 63 ms
64,256 KB |
testcase_08 | AC | 92 ms
73,384 KB |
testcase_09 | AC | 108 ms
84,092 KB |
testcase_10 | AC | 145 ms
90,880 KB |
testcase_11 | AC | 80 ms
69,760 KB |
testcase_12 | AC | 131 ms
91,008 KB |
ソースコード
def main(): N,M = map(int,input().split()) A = list(map(int,input().split())) #dp[i][j]: i番目まで見てj個の仕切り dp = [[0]*(M+1) for _ in range(N+1)] #初期化. j = 0の時はそのままなのでそれを入れる for i in range(N): dp[i+1][0] = dp[i][0] + A[i] for i in range(1,N+1): for j in range(1,M+1): if j%2 == 0: #1-indexで偶数の時はそのまま dp[i][j] = max(dp[i-1][j] + A[i-1], dp[i-1][j-1] + A[i-1]) else: dp[i][j] = max(dp[i-1][j] - A[i-1], dp[i-1][j-1] - A[i-1]) #print(dp) #答えはdp[N][j]の最大値.途中で2枚以上入れる場合、最後に入れるとしてよい. ans = max(dp[N]) for j in range(M+1): if dp[N][j] == ans: num = j; break #num枚入れる。 ret = [] #print(num) for i in reversed(range(1,N+1)): if num == 0: break #print("first",i,num,ans) if num%2 == 0: ans -= A[i-1] if dp[i-1][num-1] == ans: #ここに入っていた ret.append(i-1) num -= 1 else: ans += A[i-1] if dp[i-1][num-1] == ans: ret.append(i-1) num -= 1 #print("second",i,num,ans) #print(ret) ret.sort() for a in ret: print(a) for i in range(M - len(ret)): #最後にまとめて入れる print(N) if __name__ == '__main__': main()