이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "jelly.h"
#include <bits/stdc++.h>
using namespace std;
const int INF = 1E9;
int find_maximum_unique(int x, int y, std::vector<int> a, std::vector<int> b) {
int n = a.size();
vector<pair<int, int>> v;
for (int i = 0; i < n; i++) v.emplace_back(a[i], b[i]);
sort(v.begin(), v.end(), [] (pair<int, int> lhs, pair<int, int> rhs) {
if (lhs.first == rhs.first) return lhs.second < rhs.second;
return lhs.first < rhs.first;
});
for (int i = 0; i < n; i++) a[i] = v[i].first, b[i] = v[i].second;
vector<vector<int>> dp1(n + 2, vector<int> (x + 1, INF));
dp1[1][0] = 0;
for (int i = 2; i <= n + 1; i++) {
for (int j = 0; j <= x; j++) {
if (j >= a[i-2]) dp1[i][j] = min(dp1[i][j], dp1[i-1][j - a[i-2]]);
dp1[i][j] = min(dp1[i][j], dp1[i-1][j] + b[i-2]);
}
}
vector<vector<int>> dp2(n + 2, vector<int> (y + 1, -INF));
dp2[n + 1][0] = 0;
for (int i = n; i >= 1; i--) {
for (int j = 0; j <= y; j++) {
if (j >= b[i-1]) dp2[i][j] = max(dp2[i][j], dp2[i+1][j - b[i-1]] + 1);
dp2[i][j] = max(dp2[i][j], dp2[i+1][j]);
}
}
for (int i = 1; i <= n + 1; i++) {
for (int j = 1; j <= y; j++) dp2[i][j] = max(dp2[i][j], dp2[i][j-1]);
}
int ans = 0;
for (int i = 1; i <= n + 1; i++) {
for (int j = 0; j <= x; j++) {
int cur = i - 1;
if (y >= dp1[i][j]) cur += dp2[i][y - dp1[i][j]];
if (y >= dp1[i][j]) {
// cout << i-1 << ' ' << dp2[i][y - dp1[i][j]] << '\n';
ans = max(ans, cur);
}
}
}
return ans;
}
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |