| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 481081 | chuangsheep | Knapsack (NOI18_knapsack) | C++11 | 135 ms | 125764 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define all(x) begin(x), end(x)
#define allr(x, r) begin(x), begin(x) + (r)
#define mp make_pair
using ll = long long;
using pi = pair<int, int>;
using vi = vector<int>;
int main()
{
#if defined(DEBUG) && !defined(ONLINE_JUDGE)
// DEBUG
cerr << "DEBUG flag set - see test.out for output\n";
freopen("/home/chuang/shared-drives/F:/repos/cp/ois/noi2018/test.in", "r", stdin);
freopen("/home/chuang/shared-drives/F:/repos/cp/ois/noi2018/test.out", "w", stdout);
#else
cin.tie(0)->sync_with_stdio(false);
#endif
int S, N;
cin >> S >> N;
vector<vector<pi>> items(S + 1, vector<pi>());
for (int i = 0; i < N; i++)
{
int V, W, K;
cin >> V >> W >> K;
items[W].push_back({V, K});
}
for (int i = 0; i <= S; i++)
sort(all(items[i]), greater<pi>());
int total = 0;
for (int i = 1; i <= S; i++)
total += S / i;
vector<vi> dp(total + 1, vi(S + 1, 0));
int n_i = 1;
for (int w = 1; w <= S; w++)
{
if (items[w].size() == 0)
continue;
int w_i = 0, w_c = items[w][0].second;
for (int num = 0; num < S / w; num++)
{
for (int c = 1; c <= S; c++)
{
dp[n_i][c] = dp[n_i - 1][c];
if (c - w >= 0)
dp[n_i][c] = max(dp[n_i][c], dp[n_i - 1][c - w] + items[w][w_i].first);
}
n_i++;
w_c--;
if (w_c == 0)
{
w_i++;
if (w_i >= items[w].size())
break;
w_c = items[w][w_i].second;
}
}
}
cout << dp[n_i - 1][S] << "\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... | ||||
