# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
205714 | ics0503 | Kitchen (BOI19_kitchen) | C++17 | 69 ms | 26744 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<stdio.h>
#include<vector>
#include<algorithm>
#include<queue>
using namespace std;
short D[313][91919];
vector<int>Q[313];
vector<int>V[91919];
int A[313], B[313], S[313], tmp[313];
bool simul(vector<int>B, int n, int k) {
priority_queue<int>H;
for (int v : B)H.push(-v);
for (int i = n; i >= 1; i--) {
int g = A[i] - k;
for (int j = 0; j < k; j++) {
tmp[j] = -H.top() - 1; H.pop();
if (tmp[j] < 0)return false;
}
for (int j = 0; j < k; j++)H.push(tmp[j]);
}
return true;
}
int main() {
int n, m, k, i, j, aSum = 0; scanf("%d%d%d", &n, &m, &k);
for (i = 1; i <= n; i++) {
scanf("%d", &A[i]), aSum += A[i];
if (A[i] < k) {
puts("Impossible");
return 0;
}
}
for (i = 1; i <= m; i++) scanf("%d", &B[i]);
sort(A + 1, A + 1 + n);
sort(B + 1, B + 1 + m);
for (i = 1; i <= m; i++)S[i] = S[i - 1] + B[i];
D[0][0] = 0;
for (i = 1; i <= S[1]; i++)D[0][i] = -1;
for (i = 1; i <= m; i++) {
for (j = 0; j <= S[i]; j++) {
D[i][j] = D[i - 1][j];
if (B[i] <= j && D[i - 1][j - B[i]] != -1) {
if (D[i][j] == -1 || D[i][j] < D[i-1][j - B[i]] + 1) {
D[i][j] = D[i][j - B[i]] + 1;
}
}
}
for (j = S[i] + 1; j < S[i + 1]; j++)D[i][j] = -1;
}
int ans = -1;
for (i = aSum; i <= S[m]; i++) if (D[m][i] != -1) {
Q[D[m][i]].push_back(i);
int now = i;
for (j = m; j > 0; j--) {
if (D[j][now] == D[j - 1][now - B[j]] + 1) {
V[i].push_back(j);
now -= B[j];
}
}
if (V[i].size()>=k && simul(V[i], n, k)) {
printf("%d\n", i - aSum);
return 0;
}
}
printf("Impossible");
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... |