# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
548567 | Alexandruabcde | Knapsack (NOI18_knapsack) | C++14 | 126 ms | 3648 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
constexpr int NMAX = 1e5 + 5;
constexpr int SUMMAX = 2005;
typedef long long LL;
struct Item {
int value;
int copies;
bool operator < (const Item &other) const {
return value > other.value;
}
};
int S, N;
vector <Item> V[SUMMAX];
int dp[SUMMAX];
int main () {
cin >> S >> N;
for (int i = 1; i <= N; ++ i ) {
Item it;
int w;
cin >> it.value >> w >> it.copies;
V[w].push_back(it);
}
for (int i = 0; i <= S; ++ i )
dp[i] = -1;
dp[0] = 0;
for (int w = 0; w <= S; ++ w ) {
int ind = 0;
sort(V[w].begin(), V[w].end());
for (int cnt = 0; cnt * w < S; ++ cnt ) {
if (ind >= V[w].size()) break;
for (int s = S; s >= w; -- s )
if (dp[s - w] != -1) dp[s] = max(dp[s], dp[s - w] + V[w][ind].value);
V[w][ind].copies --;
if (V[w][ind].copies == 0) ++ ind;
}
}
int ans = 0;
for (int i = 0; i <= S; ++ i )
ans = max(ans, dp[i]);
cout << ans << '\n';
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... |