#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define INF 10000000
int main(){
ll n, m, k, su = 0;
cin>>n>>m>>k;
bool ca = 0;
if (m < k){
ca = 1;
}
vector<ll> a(n + 1), b(m + 1);
for (int i = 0; i< n; i++){
cin>>a[i + 1];
su += a[i + 1];
if (a[i + 1] < k){
ca = 1;
}
}
for (int i = 0; i < m; i++){
cin>>b[i + 1];
}
if (ca){
cout<<"Impossible";
return 0;
}
vector<vector<vector<ll>>> dp(m + 1, vector<vector<ll>>(m + 1, vector<ll>(k * n + 1, 0)));
for (int i = 1; i <= m; i++){
for (int j = 1; j <= i; j++){
for (int l = i * k; l <= k * n; l++){
if (a[j] >= l){
dp[i][j][l] = max(dp[i - 1][j - 1][0] + a[j] - l, dp[i - 1][j][l]);
}
else if (a[j] >= k){
dp[i][j][l] = max(dp[i - 1][j - 1][l - k] + max(a[j] - k, 0ll), dp[i - 1][j][l]);
}
else{
dp[i][j][l] = max(dp[i - 1][j - 1][l - a[j]], dp[i - 1][j][l]);
}
}
}
}
ll ans = m + 1;
for (ll i = k; i <= m; i++){
ll val = max(ans, dp[m][i][k * n]);
if (val >= su - k * i){
ans = min(ans, i);
}
}
cout<<ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
432 KB |
Output is correct |
3 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
432 KB |
Output is correct |
3 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
66 ms |
163684 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5 ms |
10928 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
344 KB |
Output is correct |
2 |
Correct |
0 ms |
432 KB |
Output is correct |
3 |
Incorrect |
1 ms |
348 KB |
Output isn't correct |
4 |
Halted |
0 ms |
0 KB |
- |