# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
774795 | scrge | Knapsack (NOI18_knapsack) | C++17 | 4 ms | 6356 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int S = 2000;
int s, n;
multiset<int, greater<int>> vals[S+5];
signed main(){
cin >> s >> n;
for(int i = 0; i < n; i++){
int v, w, k;
cin >> v >> w >> k;
while(k-- &&
((vals[w].size() == (s/w)+1 && v > *vals[w].lower_bound(v))
|| vals[w].size() < s)){
if(vals[w].size() == s)
vals[w].erase(prev(vals[w].end()));
vals[w].insert(v);
}
}
/*
for(int i = 0; i < s; i++){
cout << i << ": ";
for(int j: vals[i]) cout << j << " ";
cout << endl;
}*/
int dp[s+5][s+5];
memset(dp, 0, sizeof dp);
for(int i = 1; i <= s; i++){
int cur_w = 0, cur_v = 0;
for(int j = 0; j <= s; j++)
dp[i+1][j] = dp[i][j];
for(int v: vals[i]){
cur_w += i, cur_v += v;
if(cur_w >= s) break;
for(int j = cur_w; j <= s; j++){
dp[i+1][j-cur_w] = max(dp[i+1][j-cur_w], dp[i][j]+cur_v);
}
}
}
int ans = 0;
for(int i = 0; i <= s; i++)
ans = max(ans, dp[s+1][i]);
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... |