# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
501389 | zhangjishen | Knapsack (NOI18_knapsack) | C++98 | 97 ms | 66444 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define mp make_pair
#define pb push_back
#define fi first
#define se second
template<typename T> bool chkmin(T &a, T b){return b < a ? a = b, 1 : 0;}
template<typename T> bool chkmax(T &a, T b){return b > a ? a = b, 1 : 0;}
typedef long long ll;
typedef pair<int, int> pii;
const int MAXS = 2e3 + 10;
int n, s;
ll sum[MAXS][MAXS], f[MAXS][MAXS];
vector<pii> wei[MAXS];
bool cmp(pii a, pii b){
return a.first > b.first;
}
int main(){
scanf("%d %d", &s, &n);
int v, w, k;
for(int i = 1; i <= n; i++){
scanf("%d %d %d", &v, &w, &k);
wei[w].pb(mp(v, k));
}
for(int i = 1; i <= s; i++){
sort(wei[i].begin(), wei[i].end(), cmp);
int t = 1;
for(int j = 0; j < (int)wei[i].size(); j++){
v = wei[i][j].first, k = wei[i][j].second;
for(int l = 1; l <= k && t <= s; l++, t++)
sum[i][t] = sum[i][t - 1] + v;
}
}
for(int i = 1; i <= s; i++)
for(int j = 1; j <= s; j++)
for(k = 0; k <= j / i; k++)
chkmax(f[i][j], f[i - 1][j - k * i] + sum[i][k]);
printf("%lld\n", f[s][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... |