# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
789598 | codergirl | Knapsack (NOI18_knapsack) | C++14 | 1079 ms | 17352 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <cstdio>
#include <algorithm>
#include <cmath>
#include <vector>
#include <cstring>
int main() {
std::vector<long> v, w; long s, n, x, y, z, t=0; std::scanf("%ld %ld", &s, &n);
for (int i=0; i < n; i++) {
std::scanf("%ld %ld %ld", &y, &z, &x);
for (int j=0; j < 30; j++) {
t = std::pow(2, j);
if (z*t > s) break;
if (x < t) {
v.push_back(y*x); w.push_back(z*x); break;
}
v.push_back(y*t); w.push_back(z*t); x -= t;
if (x == 0) break;
}
}
long arr[2][s+1]; std::memset(arr[0], 0, sizeof(arr[0])); arr[1][0] = 0;
bool a=0, b=1;
for (long i=1; i <= v.size(); i++) {
a = 1-a, b = 1-b;
for (long j=1; j <= s; j++) arr[a][j] = (j-w[i-1] >= 0) ? std::max(arr[b][j-w[i-1]]+v[i-1], arr[b][j]) : arr[b][j];
}
printf("%ld\n", arr[a][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... |