# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
581959 | Belgutei | Knapsack (NOI18_knapsack) | C++17 | 66 ms | 2896 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ff first
#define ss second
#define pb push_back
#define IOS ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
int s,n;
ll val, wei, num;
vector<pair<ll,ll>> p[2005];
vector<ll> v[2005];
ll dp[2005];
ll ans;
int main() {
IOS
cin >> s >> n; // s <= 2000
for(int i = 1; i <= n; i ++) {
cin >> val >> wei >> num;
p[wei].pb({-val, num});
}
for(int i = 1; i <= s; i ++) {
sort(p[i].begin(), p[i].end());
int tmp = s / i;
int pos = 0;
while(tmp > 0 && pos < p[i].size()) {
if(p[i][pos].ss == 0) {
pos ++;
continue;
}
tmp --;
v[i].pb(-p[i][pos].ff);
p[i][pos].ss --;
}
}
for(int i = 1; i <= s; i ++) { // weight
for(int j = s; j >= 0; j --) {
ll tmp = 0;
for(int k = 0; k < v[i].size(); k ++) {
if(j - (k + 1) * i < 0) break;
tmp += v[i][k];
dp[j] = max(dp[j], dp[j - (k + 1) * i] + tmp);
ans = max(ans, dp[j]);
}
}
}
cout << ans;
}
컴파일 시 표준 에러 (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... |