結果
問題 | No.31 悪のミックスジュース |
ユーザー | cologne |
提出日時 | 2022-01-23 14:24:44 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 701 bytes |
コンパイル時間 | 344 ms |
コンパイル使用メモリ | 81,992 KB |
実行使用メモリ | 107,792 KB |
最終ジャッジ日時 | 2024-05-07 02:11:29 |
合計ジャッジ時間 | 9,971 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 133 ms
88,192 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 137 ms
88,580 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 131 ms
88,448 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
import itertools import sys import fractions input = sys.stdin.readline def main(): N, V = map(int, input().split()) *C, = itertools.accumulate(map(int, input().split())) V -= N if V <= 0: print(C[-1]) return L = (N**3-N)//2 DP = [0] + [float('inf')]*L for i in range(1, L+1): for j in range(N): if i > j: DP[i] = min(DP[i], DP[i-(j+1)]+C[j]) if V <= L: print(C[-1] + DP[V]) else: target = min(range(N), key=lambda i: fractions.Fraction(C[i], i+1)) greedy = (V-(L+1))//(target+1) + 1 print(greedy*C[target] + DP[V-(target+1)*greedy]) if __name__ == '__main__': main()