# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1065981 | KALARRY | Knapsack (NOI18_knapsack) | C++14 | 46 ms | 3676 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
//chockolateman
#include<bits/stdc++.h>
using namespace std;
int N,S,dp[2005]; //max val with space i
vector<pair<int,int>> items[2005];
int main()
{
scanf("%d%d",&S,&N);
for(int v,w,k,i = 1 ; i <= N ; i++)
{
scanf("%d%d%d",&v,&w,&k);
items[w].push_back({v,k});
}
for(int i = 1 ; i <= S ; i++)
{
sort(items[i].begin(),items[i].end(),greater<pair<int,int>>());
int space_taking = 0;
for(auto e : items[i])
{
int v = e.first;
int w = i;
int k = e.second;
for(int x = 1 ; space_taking <= S && x <= k ; x++)
{
space_taking += w;
if(space_taking <= S)
{
for(int j = S ; j >= w ; j--)
dp[j] = max(dp[j],dp[j-w] + v);
}
}
}
}
printf("%d\n",dp[S]);
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... |