# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1072749 | vjudge1 | Knapsack (NOI18_knapsack) | C++17 | 167 ms | 7340 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define ii pair<int, int>
#define pll pair<ll, ll>
#define fi first
#define se second
#define m_p make_pair
#define pb push_back
#define __builtin_popcount __builtin_popcountll
#define BIT(x, i) (((x)>> (i))& 1)
#define MASK(x) (1LL<< (x))
#define all(x) x.begin(),x.end()
#define MOD 1000000007
#define faster cin.tie(0)->ios_base::sync_with_stdio(false)
using namespace std;
const int max6 = 1e6;
const int max5 = 1e5;
const int max4 = 1e4;
const ll INF = 1e18;
const int maxsgt = 31 -__builtin_clz(max5) + 2;
void file()
{
#define task ""
if (fopen(task".inp", "r")){
freopen(task".inp", "r", stdin);
freopen(task".out", "w", stdout);
}
}
void prepare()
{
}
int n, s;
ll dp[107][2007];
struct note
{
int val, w, num;
} a[max5 + 7];
void test()
{
cin >> s >> n;
for (int i = 1; i <= n; i++) cin >> a[i].val >> a[i].w >> a[i].num;
memset(dp, 0, sizeof(dp));
ll ans = 0;
for (int i = 1; i <= n; i++){
for (int j = 1; j <= s; j++){
dp[i][j] = dp[i - 1][j];
for (int k = 1; k <= a[i].num; k++){
if (j < a[i].w * k * 1ll) break;
dp[i][j] = max(dp[i][j], dp[i - 1][j - a[i].w * k] + a[i].val * k);
}
ans = max(ans, dp[i][j]);
}
}
cout << ans;
}
signed main()
{
faster;
file();
prepare();
int numtest = 1, subtask;
//cin >> numtest;
//cin >> subtask;
while(numtest--) test();
}
컴파일 시 표준 에러 (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... |