#include #include 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 a(n - 1); rep(i, n - 1) cin >> a[i]; vector> dps(n), dpe(n); dps[0][0] = x; ll ans = longinf; rep(i, n - 1) { for(auto [ct, cx] : dps[i]) { int k = i; ll t = 0; while(k < n - 1) { t += a[k++]; if(t % d > b) { break; } } if(k == n - 1) { ll ret = max(ct + t - cx, 0ll); if(ret % d > b) { ret = (ret + d - 1) / d * d; } ans = min(ans, ret); } else { ll s = (t + d - 1) / d * d; ll e = t / d * d + b; ll need = t - e; dps[k][ct + s] = max(dps[k][ct + s], cx); if(cx < need) { continue; } dpe[k][ct + e] = max(dpe[k][ct + e], cx - need); } } for(auto [ct, cx] : dpe[i]) { int k = i; ll t = b; while(k < n - 1) { t += a[k++]; if(t % d > b) { break; } } if(k == n - 1) { t -= b; ll ret = max(ct + t - cx, 0ll); if(ret % d > b) { ret = (ret + d - 1) / d * d; } ans = min(ans, ret); } else { ll s = (t + d - 1) / d * d; ll e = t / d * d + b; ll need = t - e; s -= b; e -= b; dps[k][ct + s] = max(dps[k][ct + s], cx); if(cx < need) { continue; } dpe[k][ct + e] = max(dpe[k][ct + e], cx - need); } } } cout << ans << endl; return 0; }