# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
999528 | ef10 | Knapsack (NOI18_knapsack) | C++17 | 105 ms | 36176 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// Source: https://usaco.guide/general/io
#include <bits/stdc++.h>
using namespace std;
#define LL long long
int main() {
LL S, N; cin >> S >> N;
tuple<LL, LL, LL> A[N+1]; memset(A,0,sizeof(A));
for (LL i = 1; i <= N; i++) {
LL v,w,k;
cin >> v >> w >> k;
A[i] = make_tuple(w,v,k);
}
sort(A+1,A+N+1,greater<tuple<LL,LL,LL> >());
LL D[S+1][S+1]; memset(D,0,sizeof(D));
LL ind = 1;
while (ind <= N) {
LL s = get<0>(A[ind]);
LL id = 1;
while (ind <= N && get<0>(A[ind]) == s) {
for (LL j = 0; j < get<2>(A[ind]) && id <= S; j++) {
D[s][id++] = get<1>(A[ind]);
}
ind++;
if (id > S) break;
}
while (ind <= N && get<0>(A[ind]) == s) ind++;
}
LL dp[2][S+1];
for (LL i = 0; i < 2; i++) {
dp[i][0] = 0;
for (LL j = 1; j <= S; j++) {
dp[i][j] = -1;
}
}
for (LL i = 1; i <= S; i++) {
LL ind = i%2;
LL oi = (i+1)%2;
for (LL j = S; j >= 0; j--) {
dp[ind][j] = dp[oi][j];
if (dp[ind][j] < 0) continue;
for (LL w = i,id=1,v=D[i][id],V=v; w+j <= S && v > 0 && id <= S; w+=i,id++,v=D[i][id],V+=v) {
dp[ind][w+j] = max(dp[ind][w+j], dp[ind][j]+V);
}
}
}
LL res = 0;
for (LL i = 1; i <= S; i++) {
res = max(res, dp[S%2][i]);
}
cout << res << 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... |