結果
問題 | No.31 悪のミックスジュース |
ユーザー | tnodino |
提出日時 | 2022-04-04 18:02:40 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 545 bytes |
コンパイル時間 | 1,205 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,008 KB |
最終ジャッジ日時 | 2024-05-04 03:29:33 |
合計ジャッジ時間 | 2,095 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 44 ms
10,880 KB |
testcase_05 | AC | 44 ms
11,008 KB |
testcase_06 | AC | 26 ms
10,752 KB |
testcase_07 | AC | 43 ms
11,008 KB |
testcase_08 | AC | 42 ms
10,880 KB |
testcase_09 | WA | - |
testcase_10 | AC | 26 ms
10,752 KB |
testcase_11 | WA | - |
testcase_12 | AC | 44 ms
10,880 KB |
testcase_13 | AC | 28 ms
10,752 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
INF = 1<<100 N,V = map(int,input().split()) C = list(map(int,input().split())) S = [0] * N for i in range(N): S[i] = S[i-1] + C[i] if V <= N: print(S[-1]) exit() DP = [[INF] * 101 for _ in range(N+1)] DP[0][0] = 0 for i in range(N): for j in range(101): DP[i+1][j] = min(DP[i][j], DP[i+1][j]) k = min(100, (i + 1) + j) DP[i+1][k] = min(DP[i][j] + S[i], DP[i+1][j] + S[i], DP[i+1][k]) V -= N ans = INF for i in range(N): ans = min(ans, (S[i] * (V // (i + 1))) + (DP[N][V % (i + 1)]) + S[-1]) print(ans)