# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
970983 | handlename | Knapsack (NOI18_knapsack) | C++17 | 44 ms | 3160 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int s,n;
int memo[2001];
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cin>>s>>n;
multiset<int> arr[s+1];
for (int i=0;i<n;i++){
int a,b,c;
cin>>a>>b>>c;
c=min(c,s/b);
while (c>0 && arr[b].size()+1<=s/b){
arr[b].insert(a);
c--;
}
while (c>0 && a>(*arr[b].begin())){
arr[b].erase(arr[b].begin());
arr[b].insert(a);
c--;
}
}
for (int b=0;b<=s;b++){
for (auto a:arr[b]){
for (int j=s-b;j>=0;j--){
memo[j+b]=max(memo[j+b],memo[j]+a);
}
}
}
cout<<memo[s];
}
컴파일 시 표준 에러 (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... |