# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
898789 | Amaarsaa | Knapsack (NOI18_knapsack) | C++14 | 59 ms | 5464 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
using ll = int;
const int N = 1e5 + 2;
ll weight[N], CanAdd[N], price[N], Left[N];
vector < pair < ll, ll > > W[2002];
ll dp[N];
int main() {
// freopen("moocast.in", "r", stdin);
// freopen("moocast.out", "w", stdout);
ios::sync_with_stdio(false);
cin.tie(NULL);
ll i, ans, j, r, last, now, n, k, p;
cin >> k >> n;
for (i = 1; i <= n; i ++) {
cin >> price[i] >> weight[i] >> Left[i];
if ( weight[i] <= k && Left[i] > 0) W[weight[i]].push_back({price[i], Left[i]});
}
vector < pair < ll, ll > > v;
for (i = 1; i <= k; i ++) {
sort(W[i].begin(), W[i].end(), greater<pair < ll, ll > >());
r = k/i;
p = 0;
while ( r > 0 && p < W[i].size()) {
v.push_back({i, W[i][p].first});
if ( W[i][p].second == 0) p ++;
else {
W[i][p].second --;
if ( W[i][p].second == 0) p ++;
}
r --;
}
}
ans = 0;
memset(dp, -0x3f, sizeof dp);
dp[0] = 0;
for (i = 0; i < v.size(); i ++) {
for (j = k; j >= v[i].first; j --) {
dp[j] = max(dp[j], dp[j - v[i].first] + v[i].second);
ans = max(ans, dp[j]);
}
}
cout << ans << endl;
}
컴파일 시 표준 에러 (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... |