# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
318711 | ryangohca | Knapsack (NOI18_knapsack) | C++17 | 145 ms | 5228 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pii pair<int, int>
priority_queue<pii> values[2001];
vector<pii> candidates;
int dp[2001];
int32_t main() {
int s, n; cin >> s >> n;
for (int i = 0; i < n; i++){
int v, w, k; cin >> v >> w >> k;
values[w].push({v, k});
}
for (int i = 1; i <= 2000; i++){
int canChoose = s / i;
while (!values[i].empty() && canChoose > 0){
pii top_e = values[i].top(); values[i].pop();
int num_chosen = min(canChoose, top_e.second);
for (int j = 0; j < num_chosen; j++) candidates.push_back({top_e.first, i});
canChoose -= num_chosen;
}
}
for (int a = 0; a < candidates.size(); ++a){
for (int c = s; c >= candidates[a].second; --c){
dp[c] = max(dp[c], dp[c - candidates[a].second] + candidates[a].first);
}
}
cout << dp[s] << '\n';
}
컴파일 시 표준 에러 (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... |