# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
618113 | Nafeeszx | Knapsack (NOI18_knapsack) | C++14 | 179 ms | 262144 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define trav(a, x) for(auto& a : x)
#define FOR(i, a, b) for (int i=(a); i<=(signed)(b); i++)
#define ROF(i, a, b) for (int i=(a); i>=(signed)(b); i--)
#define F0R(i, a) for (int i=0; i<(signed)(a); i++)
#define vi vector<int>
#define vvl vector<vector<ll>>
#define all(v) (v).begin(),(v).end()
typedef long long ll;
void setIO(string name = "") {
ios_base::sync_with_stdio(0); cin.tie(0);
if(name.size()){
freopen((name+".in").c_str(), "r", stdin);
freopen((name+".out").c_str(), "w", stdout);
}
}
const int mod = 1e9 + 7, MOD = 998244353;
int dp[100000][2001], v[100000], w[100000], k[100000];
int main()
{
setIO();
int s, n;
cin >> s >> n;
//vector<int> v(n), w(n), k(n);
F0R(i, n) cin >> v[i] >> w[i] >> k[i];
for(int t = 0; t * w[0] <= s && t <= k[0]; ++t) dp[0][t*w[0]] = t * v[0];
F0R(i, n-1) {
FOR(j, 0, s) {
for(int t = 0; j + t * w[i+1] <= s && t <= k[i+1]; ++t) {
dp[i+1][j+t*w[i+1]] = max(dp[i+1][j+t*w[i+1]], dp[i][j] + t * v[i+1]);
}
}
}
int res = 0;
//for(int j = 0; j < n; ++j) {
for(int i = 0; i <= s; ++i) {
res = max(res, dp[n-1][i]);
//cout << dp[j][i] << " ";
}
//cout << "\n";
//}
cout << res;
//cout << dp[0][12];
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... |