# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
866376 | phuxtrohhg | Knapsack (NOI18_knapsack) | C++14 | 43 ms | 4908 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long
#define pii pair<ll, ll>
#define st first
#define nd second
#define all(x) (x).begin(), (x).end()
#define mp(x) make_pair(x)
#define file "test"
using namespace std;
const double PI = 2 * acos(0);
const long long INF = 1e18;
const long long N = 2e6 + 5;
ll s, n;
ll dp[N];
vector<pii> w[3005];
int main()
{
ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0);
cin >> s >> n;
for (ll i = 1; i <=n; i++)
{
ll v, wai, k;
cin >> v >> wai >> k;
w[wai].push_back({v, k});
}
for (ll i = 1; i <= s; i++)
{
if (!w[i].size()) continue;
sort(all(w[i]), greater<pii>());
ll curw = i;
for (ll r = 0; r < w[i].size(); r++)
{
if (curw > s) break;
for (ll sl = 1; sl <= w[i][r].nd && curw <= s; sl++, curw += i)
for (ll j = s; j >= i * sl; j--)
dp[j] = max(dp[j], dp[j - i] + w[i][r].st);
}
}
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... |