結果
問題 | No.31 悪のミックスジュース |
ユーザー | momoyuu |
提出日時 | 2024-07-28 01:11:15 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 925 bytes |
コンパイル時間 | 1,323 ms |
コンパイル使用メモリ | 95,824 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-28 01:11:18 |
合計ジャッジ時間 | 2,592 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
ソースコード
#include<iostream> #include<vector> #include<algorithm> using namespace std; using ll = long long; int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); ll n,v; cin>>n>>v; vector<ll> c(n); for(int i = 0;i<n;i++) cin>>c[i]; ll sum = 0; for(int i = 0;i<n;i++) sum += c[i]; v -= n; if(v<=0){ cout<<sum<<endl; return 0; } vector<ll> a(n+1,0); for(int i = 0;i<n;i++) a[i+1] += a[i] + c[i]; ll ans = 1e18; vector<ll> dp(n+1,1e18); dp[0] = 0; for(int i = 0;i<=n;i++){ for(int j = 1;j<=n;j++){ if(i+j>n) continue; dp[i+j] = min(dp[i+j],dp[i]+a[j]); } } for(int i = 0;i<n;i++){ ll le = i + 1; ll can = (v-n+le-1) / le; ll nv = v - can * le; ll now = sum + a[i+1] * can; if(nv>=0) now += dp[nv]; ans = min(ans,now); } cout<<ans<<endl; }