#include <iostream>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <cassert>
#include <cstring>
using namespace std;
const int maxn=105, maxval=505005;
typedef long long ll;
int a[maxn*2];
int dp[maxval][maxn];
void dodaj1(int br, int x){
for(int i=x; i<maxval; i++){
for(int j=1; j<=br; j++){
if(dp[i-x][j-1]!=-1){
dp[i][j]=dp[i-x][j-1]+1;
}
}
}
for(int i=0; i<maxval; i++){
int maksi=-1;
for(int j=0; j<=br; j++){
maksi=max(maksi, dp[i][j]);
dp[i][j]=-1;
}
dp[i][0]=maksi;
}
}
void dodaj2(int br, int x){
for(int i=maxval-x-1; i>=0; i--){
for(int j=1; j<=br; j++){
if(dp[i+x][j-1]!=-1){
dp[i][j]=dp[i+x][j-1]+1;
}
}
}
for(int i=0; i<maxval; i++){
int maksi=-1;
for(int j=0; j<=br; j++){
maksi=max(maksi, dp[i][j]);
dp[i][j]=-1;
}
dp[i][0]=maksi;
}
}
int main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
memset(dp, -1, sizeof(dp));
int n;
ll l;
cin >> n >> l;
assert(n<maxn);
for(int i=0; i<n*2+1; i++){
cin >> a[i];
assert(a[i]<maxn);
}
dp[0][0]=a[n];
if(l<0){
l=-l;
for(int i=0; i<n; i++){
dodaj1(a[i], n-i);
}
for(int i=n+1; i<n*2+1; i++){
dodaj2(a[i], i-n);
}
}
else{
for(int i=n+1; i<n*2+1; i++){
dodaj1(a[i], i-n);
}
for(int i=0; i<n; i++){
dodaj2(a[i], n-i);
}
}
if(l>=maxval || dp[l][0]<1){
cout << "impossible\n";
}
else{
cout << dp[l][0] << '\n';
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
147 ms |
207820 KB |
Output is correct |
2 |
Correct |
141 ms |
207908 KB |
Output is correct |
3 |
Correct |
111 ms |
207836 KB |
Output is correct |
4 |
Correct |
431 ms |
207848 KB |
Output is correct |
5 |
Execution timed out |
5050 ms |
207756 KB |
Time limit exceeded |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
147 ms |
207820 KB |
Output is correct |
2 |
Correct |
141 ms |
207908 KB |
Output is correct |
3 |
Correct |
111 ms |
207836 KB |
Output is correct |
4 |
Correct |
431 ms |
207848 KB |
Output is correct |
5 |
Execution timed out |
5050 ms |
207756 KB |
Time limit exceeded |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
438 ms |
207936 KB |
Output is correct |
2 |
Runtime error |
257 ms |
421292 KB |
Execution killed with signal 6 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
438 ms |
207936 KB |
Output is correct |
2 |
Runtime error |
257 ms |
421292 KB |
Execution killed with signal 6 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
438 ms |
207936 KB |
Output is correct |
2 |
Runtime error |
257 ms |
421292 KB |
Execution killed with signal 6 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
147 ms |
207820 KB |
Output is correct |
2 |
Correct |
141 ms |
207908 KB |
Output is correct |
3 |
Correct |
111 ms |
207836 KB |
Output is correct |
4 |
Correct |
431 ms |
207848 KB |
Output is correct |
5 |
Execution timed out |
5050 ms |
207756 KB |
Time limit exceeded |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
438 ms |
207936 KB |
Output is correct |
2 |
Runtime error |
257 ms |
421292 KB |
Execution killed with signal 6 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
147 ms |
207820 KB |
Output is correct |
2 |
Correct |
141 ms |
207908 KB |
Output is correct |
3 |
Correct |
111 ms |
207836 KB |
Output is correct |
4 |
Correct |
431 ms |
207848 KB |
Output is correct |
5 |
Execution timed out |
5050 ms |
207756 KB |
Time limit exceeded |
6 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
438 ms |
207936 KB |
Output is correct |
2 |
Runtime error |
257 ms |
421292 KB |
Execution killed with signal 6 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
147 ms |
207820 KB |
Output is correct |
2 |
Correct |
141 ms |
207908 KB |
Output is correct |
3 |
Correct |
111 ms |
207836 KB |
Output is correct |
4 |
Correct |
431 ms |
207848 KB |
Output is correct |
5 |
Execution timed out |
5050 ms |
207756 KB |
Time limit exceeded |
6 |
Halted |
0 ms |
0 KB |
- |