# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
985233 | Marcus | Knapsack (NOI18_knapsack) | C++17 | 125 ms | 36432 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
void read() {freopen("input.txt", "r", stdin);}
int main() {
//read();
ll s, n; cin>>s>>n;
map<ll, vector<pair<ll, ll>>> p;
for (ll i=0; i<n; i++)
{
int v, w, c; cin>>v>>w>>c;
p[w].push_back({v, c});
}
vector<vector<ll>> dp((ll)p.size()+1, vector<ll>(s+1, 0));
ll ite = 1;
for (auto &[w, items]: p)
{
sort(items.begin(), items.end(), greater<pair<ll, ll>>());
for (ll x=1; x<=s; x++)
{
dp[ite][x] = dp[ite-1][x];
ll copy = 0;
ll item = 0;
ll item_copy = 0;
ll profit = 0;
while((copy+1)*w <= x && item < items.size())
{
copy++;
profit += items[item].first;
dp[ite][x] = max(dp[ite][x], dp[ite-1][x-copy*w] + profit);
item_copy++;
if (item_copy == items[item].second) {item_copy = 0; item++;}
}
}
ite++;
}
//for (auto u: dp[(ll)p.size()]) {cout<<u<<" ";}
cout<<dp[(ll)p.size()][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... |