| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 648307 | yellowtomato98 | Knapsack (NOI18_knapsack) | C++17 | 606 ms | 36252 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.
/**
* ^~^ ,
* ('Y') )
* / \/
* (\|||/)
**/
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <vector>
#include <bitset>
#include <set>
#include <unordered_set>
#include <numeric>
#include <map>
#include <unordered_map>
#include <string>
#include <cmath>
#include <tuple>
#include <queue>
using namespace std;
#define ll long long
void debug(vector<int> x){
cout << "\n";
for (int i = 0; i < x.size(); i++){
cout << x[i] << " ";
}
cout << "\n";
}
void debug(vector<vector<ll>> x){
cout << "\n";
for (int i = 0; i < x.size(); i++){
for (int j = 0; j < x[i].size(); j++){
cout << x[i][j] << " ";
}
cout << "\n";
}
}
void debug(set<int> x){
cout << "\n";
for (auto s : x){
cout << s << " ";
}
cout << "\n";
}
void debug(){
cout << "FLAG" << endl;
}
const int INF = INT32_MAX;
const int MOD = 1e9+7;
// ios_base::sync_with_stdio(0);
// cin.tie(0);
struct Item{
int v,w,k;
Item(int a, int b, int c): v(a), w(b), k(c) {}
bool operator<(const Item& i) const{
if (w != i.w){
return w < i.w;
}
return v > i.v;
}
};
// bool rev(pair<int, int> x, pair<int, int> y){
// return x.first > y.first; // sort greatest value to least value
// }
int main(){
int s,n; cin >> s >> n;
vector<Item> a;
for (int i = 0; i < n; i++){
int v,w,k; cin >> v >> w >> k;
a.push_back(Item(v,w,k));
}
sort(a.begin(), a.end());
map<int, vector<pair<int, int>>> p;
for (int i = 0; i < a.size(); i++){
p[a[i].w].push_back({a[i].v, a[i].k});
}
// for (int i = 0; i < a.size(); i++){
// cout << a[i].v << " " << a[i].w << " " << a[i].k << endl;
// }
// cout << endl;
// for (auto it = p.begin(); it != p.end(); it++){
// cout << "new element: " << it->first << endl;
// for (int i = 0; i < it->second.size(); i++){
// cout << (it->second)[i].first << " " << (it->second)[i].second << endl;
// }
// cout << endl;
// }
vector<vector<ll>> dp(s+1, vector<ll>(s+1));
for (int i = 1; i <= s; i++){
for (int j = 0; j <= s; j++){
dp[i][j] = dp[i-1][j];
ll t = 0; int cnt = 1; int cnt2 = 0; int in = 0;
while (j - cnt*i >= 0 and in < p[i].size()){
t += p[i][in].first;
dp[i][j] = max(dp[i-1][j-cnt*i] + t, dp[i][j]);
cnt2++;
if (cnt2 == p[i][in].second){
cnt2 = 0;
in++;
}
cnt++;
}
// cout << dp[i][j] << " ";
}
// cout << endl;
}
cout << dp[s][s] << endl;
}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... | ||||
