# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
938758 | vjudge1 | Kitchen (BOI19_kitchen) | C++17 | 68 ms | 3420 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>
#include <random>
#define int long long
using namespace std;
signed main()
{
ios::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int n,m,k;
cin >> n >> m >> k;
vector<int> a(n),b(m);
for (int i = 0; i < n; i++)
{
cin >> a[i];
if (k > a[i])
{
cout << "Impossible\n";
return 0;
}
}
for (int i = 0; i < m; i++)
cin >> b[i];
sort(b.begin(),b.end());
int oth = 0;
for (int i = 0; i < n; i++)
oth+=a[i];
if (k > m)
{
cout << "Impossible\n";
return 0;
}
if (k == 1)
{
int sum = 0LL;
for (int i = 0; i < m; i++)
sum+=b[i];
vector<vector<bool>> dp(m,vector<bool>(sum+1));
dp[0][0] = 1;
dp[0][b[0]] = 1;
for (int i = 1; i < m; i++)
for (int j = 0; j <= sum; j++)
{
if (j-b[i] >= 0)
dp[i][j] = (dp[i-1][j-b[i]] | dp[i-1][j]);
else
dp[i][j] = dp[i-1][j];
}
for (int i = oth; i <= sum; i++)
if (dp[m-1][i])
{
cout << i-oth << '\n';
return 0;
}
cout << "Impossible\n";
}
else
{
if(m > 15)
{
cout << "DARJAN JUGOVIC I LOVE YOU\n";
return 0;
}
int cost = 1e9;
for (int mask = 1; mask < (1<<(m+1)); mask++)
{
vector<int> arr;
for (int i = 0; i < m; i++)
if (mask&(1<<i))
arr.push_back(b[i]);
if (k > arr.size())
continue;
int g = arr.size();
int sum = 0;
int minus = 0;
for (int i = 0; i < g; i++)
sum+=arr[i];
if (oth > sum)
continue;
for (int i = 0; i < g-k+1; i++)
{
minus+=arr[i];
if (minus >= n)
{
cost = min(cost,sum-oth);
break;
}
int oduz = arr[i];
for (int j = i; j < i+k; j++)
{
arr[i]-=oduz;
}
}
}
if (cost == 1e9)
{
cout << "Impossible\n";
return 0;
}
else
cout << cost << '\n';
}
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |