#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define pii pair<int,int>
#define F first
#define S second
#define endl '\n'
#define pb push_back
#define sz(a) (int)a.size()
#define all(a) a.begin(),a.end()
const int mod = 1e9 + 7;
const int N = 1e6 + 15;
const ll inf = 1e18;
int dp[2*N];
int main(){
ios_base::sync_with_stdio(0);cin.tie(0);
int n, l;
cin >> n >> l;
vector<int> a(2*n + 1);
vector<int> b;
for (int i=-n;i<=n;i++){
cin >> a[i+n];
int frq = a[i+n];
for (int j=0;j<frq;j++) b.pb(i);
}
dp[N] = 1;// 0
for (int i=0;i<sz(b);i++){
if (b[i] >= 0){
for (int k=2*N;k>=b[i];k--){
if (dp[k-b[i]]) dp[k] = max(dp[k], dp[k-b[i]]+1);
}
}
else {
b[i] = -b[i];
for (int k=0;k+b[i]<2*N;k++){
if (dp[k+b[i]]) dp[k] = max(dp[k], dp[k+b[i]]+1);
}
}
}
if (dp[N+l]) cout << dp[N+l]-1 << endl;
else cout << "impossible\n";
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
14 ms |
2392 KB |
Output is correct |
2 |
Correct |
10 ms |
2392 KB |
Output is correct |
3 |
Correct |
8 ms |
2392 KB |
Output is correct |
4 |
Correct |
76 ms |
2392 KB |
Output is correct |
5 |
Runtime error |
3 ms |
4696 KB |
Execution killed with signal 11 |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
14 ms |
2392 KB |
Output is correct |
2 |
Correct |
10 ms |
2392 KB |
Output is correct |
3 |
Correct |
8 ms |
2392 KB |
Output is correct |
4 |
Correct |
76 ms |
2392 KB |
Output is correct |
5 |
Runtime error |
3 ms |
4696 KB |
Execution killed with signal 11 |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
82 ms |
2500 KB |
Output is correct |
2 |
Runtime error |
3 ms |
4696 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
82 ms |
2500 KB |
Output is correct |
2 |
Runtime error |
3 ms |
4696 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
82 ms |
2500 KB |
Output is correct |
2 |
Runtime error |
3 ms |
4696 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
14 ms |
2392 KB |
Output is correct |
2 |
Correct |
10 ms |
2392 KB |
Output is correct |
3 |
Correct |
8 ms |
2392 KB |
Output is correct |
4 |
Correct |
76 ms |
2392 KB |
Output is correct |
5 |
Runtime error |
3 ms |
4696 KB |
Execution killed with signal 11 |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
82 ms |
2500 KB |
Output is correct |
2 |
Runtime error |
3 ms |
4696 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
14 ms |
2392 KB |
Output is correct |
2 |
Correct |
10 ms |
2392 KB |
Output is correct |
3 |
Correct |
8 ms |
2392 KB |
Output is correct |
4 |
Correct |
76 ms |
2392 KB |
Output is correct |
5 |
Runtime error |
3 ms |
4696 KB |
Execution killed with signal 11 |
6 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
82 ms |
2500 KB |
Output is correct |
2 |
Runtime error |
3 ms |
4696 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
14 ms |
2392 KB |
Output is correct |
2 |
Correct |
10 ms |
2392 KB |
Output is correct |
3 |
Correct |
8 ms |
2392 KB |
Output is correct |
4 |
Correct |
76 ms |
2392 KB |
Output is correct |
5 |
Runtime error |
3 ms |
4696 KB |
Execution killed with signal 11 |
6 |
Halted |
0 ms |
0 KB |
- |