이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
int n, m, s = 0;
cin >> n;
vector<array<int, 4>> a(n);
for (int i = 0; i < n; i++) {
int c, f, v;
cin >> c >> f >> v;
a[i] = {-f, 0, c, -v};
s += c;
}
cin >> m;
a.resize(n + m);
for (int i = 0; i < m; i++) {
int c, f, v;
cin >> c >> f >> v;
a[i + n] = {-f, 1, -c, v};
}
sort(a.begin(), a.end());
const long long inf = (long long) 1e18L;
vector<long long> dp(s + 51, -inf);
dp[0] = 0;
vector<long long> pd(s + 51);
for (int i = 0; i < n + m; i++) {
int c = a[i][2], v = a[i][3];
pd = dp;
for (int j = max(c, 0); j <= s; j++) {
pd[j] = max(pd[j], dp[j - c] + v);
}
swap(dp, pd);
}
cout << *max_element(dp.begin(), dp.end()) << '\n';
return 0;
}
# | 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... |