結果
問題 | No.31 悪のミックスジュース |
ユーザー | tnodino |
提出日時 | 2022-04-06 04:23:50 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 574 bytes |
コンパイル時間 | 265 ms |
コンパイル使用メモリ | 81,992 KB |
実行使用メモリ | 79,872 KB |
最終ジャッジ日時 | 2024-05-05 16:15:10 |
合計ジャッジ時間 | 2,923 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 50 ms
64,000 KB |
testcase_01 | AC | 162 ms
77,068 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 158 ms
79,872 KB |
testcase_05 | AC | 157 ms
79,800 KB |
testcase_06 | AC | 39 ms
52,352 KB |
testcase_07 | AC | 167 ms
71,296 KB |
testcase_08 | AC | 161 ms
69,888 KB |
testcase_09 | WA | - |
testcase_10 | AC | 37 ms
52,224 KB |
testcase_11 | AC | 78 ms
69,760 KB |
testcase_12 | AC | 128 ms
76,872 KB |
testcase_13 | AC | 45 ms
59,904 KB |
testcase_14 | AC | 161 ms
68,992 KB |
testcase_15 | AC | 65 ms
65,996 KB |
testcase_16 | AC | 93 ms
72,704 KB |
ソースコード
INF = 1<<64 N,V = map(int,input().split()) C = list(map(int,input().split())) S = [0] * (N + 1) for i in range(N): S[i+1] = S[i] + C[i] if V <= N: print(S[N]) exit() x = 1 for i in range(2,N+1): if S[i] / i < S[x] / x: x = i DP = [INF] * (1<<16) DP[0] = 0 for i in range(1,N+1): for L in range(1<<16): if L - i >= 0: DP[L] = min(DP[L-i] + S[i], DP[L]) V -= N ans = INF for i in range(1,N+1): K = V // i while V - (K * i) <= (1<<10) and K: K -= 1 ans = min(ans, S[i] * K + DP[V - (K * i)] + S[N]) print(ans)