結果
問題 | No.2659 Manga App |
ユーザー |
![]() |
提出日時 | 2024-03-01 02:18:18 |
言語 | C++23 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 2,856 ms / 6,000 ms |
コード長 | 1,482 bytes |
コンパイル時間 | 5,269 ms |
コンパイル使用メモリ | 318,068 KB |
実行使用メモリ | 175,616 KB |
最終ジャッジ日時 | 2024-09-29 13:25:04 |
合計ジャッジ時間 | 29,066 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 46 |
ソースコード
#include <atcoder/all> #include <bits/stdc++.h> using ll = long long; using ull = unsigned long long; #define rep(i, n) for(int i = 0; i < (int)(n); i++) #define REP(i, m, n) for(int i = (int)(m); i < (int)(n); i++) using namespace std; using namespace atcoder; using mint = modint998244353; const int inf = 1000000007; const ll longinf = 1ll << 60; int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n; cin >> n; ll b, c, x; cin >> b >> c >> x; ll d = b + c; vector<ll> a(n - 1); rep(i, n - 1) cin >> a[i]; vector<unordered_map<ll, ll>> dp(n); dp[0][0] = x; ll ans = longinf; rep(i, n - 1) { for(auto [ct, cx] : dp[i]) { int k = i; ll nt = ct; while(k < n - 1) { nt += a[k++]; if(nt % d > b) { break; } } if(k == n - 1) { ll ret = max(nt - cx, 0ll); if(ret % d > b) { ret = (ret + d - 1) / d * d; } ans = min(ans, ret); } else { ll s = (nt + d - 1) / d * d; dp[k][s] = max(dp[k][s], cx); ll e = nt / d * d + b; ll need = nt - e; if(cx >= need) { dp[k][e] = max(dp[k][e], cx - need); } } } } cout << ans << endl; return 0; }