# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
493262 | HaYoungJoon | Knapsack (NOI18_knapsack) | C++14 | 83 ms | 3036 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
using namespace std;
ll dp[2001];
typedef pair<ll,ll> pii;
vector<pii > pre[2001],items;
bool cmp(pii A, pii B) {
return A.first > B.first;
}
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0);
int n,S;
cin >> S >> n;
ll v,k,w;
for (int i = 1; i <= n; i++) {
cin >> v >> w >> k;
pre[w].push_back({v,k});
}
items.push_back({0,0});
for (int w = 1; w <= S; w++) {
if (pre[w].empty()) continue;
sort(pre[w].begin(),pre[w].end(),cmp);
ll weight = S;
for (int i = 0; i < pre[w].size() && weight > 0; i++) {
for (int j = 1; j <= pre[w][i].second && weight > 0; j++) {
weight -= w;
if (weight < 0) break;
items.push_back({w,pre[w][i].first});
}
}
}
for (int i = 1; i < items.size(); i++)
for (int j = S; j >= 0; j--)
if (j - items[i].first >= 0) dp[j] = max(dp[j],dp[j - items[i].first ] + items[i].second);
ll res = 0;
for (int i = 1; i <= S; i++) res = max(res,dp[i]);
cout << res;
return 0;
}
컴파일 시 표준 에러 (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... |