# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1088610 | shidou26 | Knapsack (NOI18_knapsack) | C++14 | 14 ms | 5724 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define endl '\n'
#define all(v) v.begin(), v.end()
typedef long long ll;
typedef pair<int, int> ii;
typedef pair<ll, int> li;
const int N = 1e5 + 3;
int n, m;
int num = 0;
ll dp[N], wes[N], ves[N];
void prepare() {
}
void input() {
cin >> m >> n;
for(int i = 1; i <= n; i++) {
int w, v, a; cin >> v >> w >> a;
int two = 1;
while(two <= a) {
wes[++num] = 1LL * w * two;
ves[num] = 1LL * v * two;
a -= two;
two *= 2;
}
if(a > 0) {
wes[++num] = 1LL * w * a;
ves[num] = 1LL * v * a;
}
}
}
void process() {
for(int i = 1; i <= num; i++) {
for(int j = m; j >= wes[i]; j--) {
dp[j] = max(dp[j], dp[j - wes[i]] + ves[i]);
}
}
cout << dp[m] << endl;
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
#define task "quantity"
if(fopen(task".INP", "r")) {
freopen(task".INP", "r", stdin);
freopen(task".OUT", "w", stdout);
}
prepare();
int testcase = 1; // cin >> testcase;
for(int i = 1; i <= testcase; i++) {
input();
process();
}
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... |