# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
652349 | chanhchuong123 | Knapsack (NOI18_knapsack) | C++14 | 1093 ms | 16156 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define task "C"
#define fi first
#define se second
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
template <typename T1, typename T2> bool mini(T1 &a, T2 b) {
if (a > b) {a = b; return true;} return false;
}
template <typename T1, typename T2> bool maxi(T1 &a, T2 b) {
if (a < b) {a = b; return true;} return false;
}
const int S = 2020;
int s, n;
long long dp[S];
vector<long long> v;
vector<long long> w;
main() {
ios_base::sync_with_stdio(0);
cin.tie(0); cout.tie(0);
if (fopen(task".inp","r")) {
freopen(task".inp","r",stdin);
freopen(task".out","w",stdout);
}
cin >> s >> n;
for (int i = 1; i <= n; i++) {
int V, W, K; cin >> V >> W >> K;
for (int i = 1; i <= K; i <<= 1) {
K -= i;
if (1LL * i * W > s) continue;
v.push_back(1LL * i * V);
w.push_back(1LL * i * W);
}
if (K) {
if (1LL * K * W > s) continue;
v.push_back(1LL * K * V);
w.push_back(1LL * K * W);
}
}
n = v.size();
for (int i = 0; i < n; i++) {
for (int j = s; j >= 0; j--) {
if (j + w[i] > s) continue;
maxi(dp[j + w[i]], dp[j] + v[i]);
}
}
cout << dp[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... |