# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
303021 | bigg | Kitchen (BOI19_kitchen) | C++14 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
const int MAXV = 1e5 + 10;
int dp[MAXN];
int a[310], b[310];
int n, m, k;
int main(){
scanf("%d %d %d", &n, &m, &k);
int soma = 0, mina = 1e9 + 7;
for(int i = 1; i <= n; i++){
scanf("%d", &a[i]);
mina = min(mina, a[i]);
soma += a[i];
}
for(int i = 1; i <= m; i+++) scanf("%d", &b[i]);
if(mina < k){
printf("Impossible\n");
return 0;
}
dp[0] = 1;
for(int i = 1; i <= m; i++){
for(int j = 90000 - b[i]; j >= 0; j--){
dp[j + b[i]] |= dp[j];
}
}
for(int i = soma; i <= 90000){
if(dp[i]){
printf("%d\n", i -soma);
return 0;
}
}
printf("Impossible\n");
}