# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
704285 | Stormersyle | Knapsack (NOI18_knapsack) | C++14 | 294 ms | 247240 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <bits/stdc++.h>
#include <fstream>
#include <string>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <math.h>
#include <numeric>
using namespace std;
using ll=long long;
int S, N, V[100001], W[100001], K[10001];
vector<pair<int, int>> weightClass[2001]; //(a, b)=value a, quantity b
int main() {
// ifstream cin("file.in");
cin>>S>>N;
for (int i=0; i<N; i++){
cin>>V[i]>>W[i]>>K[i];
weightClass[W[i]].push_back({V[i], K[i]});
}
for (int w=1; w<=S; w++){
if (weightClass[w].size()>0) sort(weightClass[w].begin(), weightClass[w].end());
}
vector<int> value, weight; //list of items we consider (up to top S/w from each weight w); pair=(value, weight)
for (int w=1; w<=S; w++){
vector<pair<int, int>> wc=weightClass[w];
for (int i=0; i<S/w; i++){
if (wc.size()==0) break;
# | 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... |