#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const ll M = 100, A = 100;
ll m, l;
ll a[2*M+1];
bool dp_right_vis[M+1][M*M*A+1];
ll dp_right_res[M+1][M*M*A+1];
// i = [1;m]
ll dp_right(ll i, ll sum)
{
if(sum<0) return -1;
if(sum==0) return 0;
if(i==m+1) return -1;
if(dp_right_vis[i][sum])
return dp_right_res[i][sum];
ll res = -1;
for(ll j=0;j<=a[m+i];j++)
{
ll r = dp_right(i+1,sum-i*j);
if(r==-1) continue;
res = max(res,r+j);
}
dp_right_vis[i][sum] = 1;
dp_right_res[i][sum] = res;
return res;
}
bool dp_left_vis[M+1][M*M*A+1];
ll dp_left_res[M+1][M*M*A+1];
// i = [1;m]
ll dp_left(ll i, ll sum)
{
if(sum<0) return -1;
if(sum==0) return 0;
if(i==m+1) return -1;
if(dp_left_vis[i][sum])
return dp_left_res[i][sum];
ll res = -1;
for(ll j=0;j<=a[m-i];j++)
{
ll r = dp_left(i+1,sum-i*j);
if(r==-1) continue;
res = max(res,r+j);
}
dp_left_vis[i][sum] = 1;
dp_left_res[i][sum] = res;
return res;
}
int main()
{
ios_base::sync_with_stdio(false);
cout.tie(0);
cin.tie(0);
cin>>m>>l;
for(ll i=0;i<2*m+1;i++)
cin>>a[i];
ll res = a[0];
bool found = false;
for(ll x=0;x<=M*M*A;x++)
{
ll y = l+x;
if(y>M*M*A) continue;
ll left_res = dp_left(1,x);
ll right_res = dp_right(1,y);
if(left_res==-1||right_res==-1) continue;
found = true;
res = max(res,left_res+right_res+a[m]);
}
if(found)
cout<<res<<"\n";
else
cout<<"impossible\n";
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
121 ms |
35496 KB |
Output is correct |
2 |
Correct |
99 ms |
53136 KB |
Output is correct |
3 |
Correct |
85 ms |
17908 KB |
Output is correct |
4 |
Correct |
518 ms |
176424 KB |
Output is correct |
5 |
Execution timed out |
5061 ms |
277272 KB |
Time limit exceeded |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
121 ms |
35496 KB |
Output is correct |
2 |
Correct |
99 ms |
53136 KB |
Output is correct |
3 |
Correct |
85 ms |
17908 KB |
Output is correct |
4 |
Correct |
518 ms |
176424 KB |
Output is correct |
5 |
Execution timed out |
5061 ms |
277272 KB |
Time limit exceeded |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
651 ms |
176356 KB |
Output is correct |
2 |
Incorrect |
2 ms |
212 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
651 ms |
176356 KB |
Output is correct |
2 |
Incorrect |
2 ms |
212 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
651 ms |
176356 KB |
Output is correct |
2 |
Incorrect |
2 ms |
212 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
121 ms |
35496 KB |
Output is correct |
2 |
Correct |
99 ms |
53136 KB |
Output is correct |
3 |
Correct |
85 ms |
17908 KB |
Output is correct |
4 |
Correct |
518 ms |
176424 KB |
Output is correct |
5 |
Execution timed out |
5061 ms |
277272 KB |
Time limit exceeded |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
651 ms |
176356 KB |
Output is correct |
2 |
Incorrect |
2 ms |
212 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
121 ms |
35496 KB |
Output is correct |
2 |
Correct |
99 ms |
53136 KB |
Output is correct |
3 |
Correct |
85 ms |
17908 KB |
Output is correct |
4 |
Correct |
518 ms |
176424 KB |
Output is correct |
5 |
Execution timed out |
5061 ms |
277272 KB |
Time limit exceeded |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
651 ms |
176356 KB |
Output is correct |
2 |
Incorrect |
2 ms |
212 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
121 ms |
35496 KB |
Output is correct |
2 |
Correct |
99 ms |
53136 KB |
Output is correct |
3 |
Correct |
85 ms |
17908 KB |
Output is correct |
4 |
Correct |
518 ms |
176424 KB |
Output is correct |
5 |
Execution timed out |
5061 ms |
277272 KB |
Time limit exceeded |
6 |
Halted |
0 ms |
0 KB |
- |