#include <bits/stdc++.h>
#define fi first
#define se second
using namespace std;
typedef pair<int, int> pii;
typedef long long ll;
int M, K;
ll L, S, arr[1010], rem[1010], ans;
ll dp[2][202020];
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
cin >> M >> L; K = 2*M*M;
for (int i = 0; i <= 2*M; i++) cin >> arr[i];
for (int i = 0; i <= 2*M; i++) S += (i-M)*arr[i];
if (S < L) {
L = -L;
for (int i = 0; i <= M; i++) swap(arr[i], arr[2*M-i]);
}
S = 0;
for (int i = 0; i <= M; i++) {
S += (i-M)*arr[i];
ans += arr[i];
rem[2*M-i] = arr[i];
arr[i] = 0;
}
if (S > L) {
cout << "impossible\n";
return 0;
}
for (int i = M+1; i <= 2*M; i++) {
ll t = (L-S)/(i-M);
if (t >= arr[i]) {
ans += arr[i];
rem[2*M-i] = arr[i];
S += arr[i]*(i-M);
arr[i] = 0;
}
else {
ans += t;
rem[2*M-i] = t;
S += t*(i-M);
arr[i] -= t;
break;
}
}
for (int j = 0; j <= K; j++) dp[0][j] = -1e18;
dp[0][M*M] = 0;
for (int i = 1; i <= M; i++) {
for (int r = 0; r < i; r++) {
deque< pair<ll, ll> > dq;
for (int j = r; j <= K; j += i) {
while (dq.size() > 0 && (j-dq.front().fi) > arr[M+i]) dq.pop_front();
while (dq.size() > 0 && dq.back().se + (j-dq.back().fi) <= dp[0][j]) dq.pop_back();
dq.push_back({j/i, dp[0][j]});
dp[1][j] = dq.front().se + (j-dq.front().fi);
}
}
for (int r = 0; r < i; r++) {
deque< pair<ll, ll> > dq;
for (int j = r; j <= K; j += i) {
while (dq.size() > 0 && (j-dq.front().fi) > rem[M+i]) dq.pop_front();
while (dq.size() > 0 && dq.back().se - (j-dq.back().fi) <= dp[0][j]) dq.pop_back();
dq.push_back({j/i, dp[0][j]});
dp[1][j] = max(dp[1][j], dq.front().se - (j-dq.front().fi));
}
}
for (int j = 0; j <= K; j++) dp[0][j] = dp[1][j];
}
for (int i = M+1; i <= 2*M; i++) {
for (int r = 0; r < i-M; r++) {
deque< pair<ll, ll> > dq;
int j = r;
while (j+i-M <= K) j += i-M;
for (; j >= r; j -= i-M) {
while (dq.size() > 0 && (dq.front().fi-j) > arr[2*M-i]) dq.pop_front();
while (dq.size() > 0 && dq.back().se + (dq.back().fi-j) <= dp[0][j]) dq.pop_back();
dq.push_back({j/(i-M), dp[0][j]});
dp[1][j] = dq.front().se + (dq.front().fi-j);
}
}
for (int r = 0; r < i-M; r++) {
deque< pair<ll, ll> > dq;
int j = r;
while (j+i-M <= K) j += i-M;
for (; j >= r; j -= i-M) {
while (dq.size() > 0 && (dq.front().fi-j) > rem[2*M-i]) dq.pop_front();
while (dq.size() > 0 && dq.back().se - (dq.back().fi-j) <= dp[0][j]) dq.pop_back();
dq.push_back({j/(i-M), dp[0][j]});
dp[1][j] = max(dp[1][j], dq.front().se - (dq.front().fi-j));
}
}
for (int j = 0; j <= K; j++) dp[0][j] = dp[1][j];
}
if (dp[0][L-S+M*M] <= -1e17) cout << "impossible\n";
else cout << ans + dp[0][L-S+M*M] << "\n";
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
2392 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |