| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1016874 | sexo69696969 | Knapsack (NOI18_knapsack) | C++14 | 57 ms | 4444 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#ifdef local
#include "debug.hpp"
#define pr(...) debug(#__VA_ARGS__, __VA_ARGS__)
#define prs(...) debug_nameless(__VA_ARGS__)
#else
#define pr(...) 69
#define prs(...) 69
#endif
#define endl '\n'
const int inf = 1e9;
const long long binf = 1e18;
struct Item{
int p, w, f;
};
void solve(int tc){
int s, n;
cin >> s >> n;
vector <vector<Item>> items(s+1);
for(int i = 0; i < n; i++){
int p, w, f;
cin >> p >> w >> f;
items[w].push_back({p, w, f});
}
auto cmp = [&](Item a, Item b){
assert(a.w == b.w);
return a.p > b.p;
};
for(int i = 1; i <= s; i++){
sort(items[i].begin(), items[i].end(), cmp);
}
vector <pair<int,int>> arr;
for(int i = 1; i <= s; i++){
int total = 0;
for(int pos = 0; pos < items[i].size(); pos++){
for(int j = 0; j < items[i][pos].f && total < s; j++){
if(total + items[i][pos].w <= s){
arr.push_back({items[i][pos].w, items[i][pos].p});
}
total += items[i][pos].w;
}
if(pos > 0){
assert(items[i][pos-1].p >= items[i][pos].p && items[i][pos-1].w == items[i][pos].w);
}
}
}
vector <long long> dp(s+1, 0);
for(int i = 1; i <= arr.size(); i++){
for(int j = s; j >= 0; j--){
if(j - arr[i-1].first >= 0){
dp[j] = max(dp[j], dp[j-arr[i-1].first] + arr[i-1].second);
}
}
}
cout << dp[s] << endl;
}
signed main(){
ios_base::sync_with_stdio(0); cin.tie(0);
int tc = -1;
tc = 1;
if(tc != 1) cin >> tc;
for(int t = 0; t < tc; t++){
pr(t); prs(string(50, '-'));
solve(t);
prs(string(50, '-') + "\n");
}
return 0;
}Compilation message (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... | ||||
