# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
630353 | Galaxy | Knapsack (NOI18_knapsack) | C++14 | 1075 ms | 2652 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const int N = 1e5 + 20, M = 2010;
const int mod = 1e9 + 7;
#define x first
#define y second
typedef long long ll;
typedef pair<double, double> PDD;
int s, n, dp[M];
struct NODE{
int v, w, k;
}node[N];
int main(){
// freopen("123.in", "r", stdin);
scanf("%d%d", &s, &n);
for(int i = 1; i <= n; i++){
scanf("%d%d%d", &node[i].v, &node[i].w, &node[i].k);
}
for(int i = 1; i <= n; i++){
int v = node[i].v, w = node[i].w, k = node[i].k;
if(k == 1){
for(int j = s; j >= w; j--){
dp[j] = max(dp[j], dp[j - w] + v);
}
}
else if(k >= (s + w - 1) / w){
for(int j = w; j <= s; j++){
dp[j] = max(dp[j], dp[j - w] + v);
}
}
else{
vector<int> qwe;
for(int u = 1; u <=k; u <<= 1){
qwe.push_back(u);
k -= u;
}
if(k) qwe.push_back(k);
for(auto k:qwe){
for(int j = s; j >= k * w ;j--){
dp[j] = max(dp[j], dp[j - k * w] + k * 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... |