結果
問題 | No.31 悪のミックスジュース |
ユーザー | tnodino |
提出日時 | 2022-04-06 04:23:50 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 574 bytes |
コンパイル時間 | 432 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 80,244 KB |
最終ジャッジ日時 | 2024-11-27 15:02:16 |
合計ジャッジ時間 | 3,429 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 49 ms
64,000 KB |
testcase_01 | AC | 165 ms
77,308 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 167 ms
80,096 KB |
testcase_05 | AC | 170 ms
80,244 KB |
testcase_06 | AC | 39 ms
51,968 KB |
testcase_07 | AC | 174 ms
71,296 KB |
testcase_08 | AC | 176 ms
70,272 KB |
testcase_09 | WA | - |
testcase_10 | AC | 38 ms
51,968 KB |
testcase_11 | AC | 76 ms
69,248 KB |
testcase_12 | AC | 133 ms
76,864 KB |
testcase_13 | AC | 45 ms
59,648 KB |
testcase_14 | AC | 172 ms
69,120 KB |
testcase_15 | AC | 66 ms
65,408 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)