# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1036216 | 2024-07-27T05:48:02 Z | tvladm2009 | Cookies (JOI23_cookies) | C++17 | 1 ms | 348 KB |
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int N = 3000 + 7; const int M = 15000 + 7; int n, m, a[M], b[M]; int vertical[M]; struct MyBitset { vector<ll> b; int n; void resize(int nn) { n = nn; b.resize(n / 63 + 2, 0); } void set(int x) { b[x / 63] |= (1LL << (x % 63)); } bool get(int x) { if (x > n) { return 0; } if (b[x / 63] & (1LL << (x % 63))) { return true; } else { return false; } } }; int main() { ios::sync_with_stdio(false); cin.tie(0); cin >> n; for (int i = 1; i <= n; ++i) cin >> a[i]; cin >> m; for (int i = 1; i <= m; ++i) cin >> b[i]; int sumA = 0; for (int i = 1; i <= n; ++i) { sumA += a[i]; } reverse(b + 1, b + m + 1); for (int i = 1; i <= sumA; ++i) { for (int j = 1; j <= n; ++j) { vertical[i] += min(i, a[j]); } } vector<bitset<M>> dp(sumA + 1); bitset<M> full; for (int i = 0; i < M; ++i) full[i] = 1; dp[0][0] = 1; for (int i = 1; i <= m; ++i) { for (int c = 1; c <= (sumA - 1) / b[i]; ++c) { dp[c] |= (dp[c - 1] << b[i]); dp[c] &= full >> max(0, sumA - 1 - vertical[c]); } } for (int x = 1; x <= sumA; ++x) { if (dp[x][sumA] == 1) { cout << x << "\n"; vector<pair<int, int>> boxes; int cnt = x; int sum = sumA; int pos = m; while (pos > 0) { while (cnt > 0 && dp[cnt - 1][sumA - b[pos]]) { sumA -= b[pos]; cnt--; boxes.push_back({b[pos], boxes.size()}); } pos--; } vector<vector<int>> sol(boxes.size()); for (int i = 1; i <= n; ++i) { sort(boxes.rbegin(), boxes.rend()); int j = 0; while (a[i] > 0) { if (j == boxes.size()) { cout << i << "\n"; return 0; } if (boxes[j].first > 0) { sol[boxes[j].second].push_back(i); boxes[j].first--; a[i]--; } j++; } } for (int i = 0; i < boxes.size(); ++i) { cout << sol[i].size() << " "; for (auto j : sol[i]) { cout << j << " "; } cout << "\n"; } return 0; } } cout << -1 << "\n"; return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 344 KB | Output is correct |
2 | Incorrect | 1 ms | 348 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Incorrect | 0 ms | 348 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 348 KB | Output is correct |
2 | Correct | 0 ms | 348 KB | Output is correct |
3 | Incorrect | 0 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 | Incorrect | 1 ms | 348 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 344 KB | Output is correct |
2 | Incorrect | 1 ms | 348 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 344 KB | Output is correct |
2 | Incorrect | 1 ms | 348 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |