# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
836535 | ZeroCool | Knapsack (NOI18_knapsack) | C++14 | 108 ms | 4940 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define mp make_pair
#define pb push_back
using ll = long long;
using ld = long double;
void solve(int T);
void pre();
const int mxn = 1e6 + 5;
const int SQRT = 500;
const int LOG = 20;
const int inf = 1e18;
const int mod = 1e9 + 7;
const ld eps = 1e-9;
int32_t main(){
pre();
int tt = 1;
//cin>>tt;
for(int i = 1;i<=tt;i++)solve(i);
return 0;
}
void pre(){
#ifdef ONLINE_JUDGE
ios::sync_with_stdio(false);
cin.tie(0);
#endif
}
struct Item{
int value;
int weight;
int count;
};
bool operator<(Item a,Item b){
if(a.value != b.value)return a.value < b.value;
if(a.weight != b.weight)return a.weight < b.weight;
return a.count < b.count;
}
void solve(int T){
int s,n;
cin>>s>>n;
Item A[n];
for(int i = 0;i<n;i++)cin>>A[i].value>>A[i].weight>>A[i].count;
sort(A, A+n);
vector<int> val[s+1];
for(int i = n-1;i>=0;i--){
while(A[i].count && val[A[i].weight].size() * A[i].weight <= s){
val[A[i].weight].push_back(A[i].value);
A[i].count--;
}
}
int dp[2 * s + 5];
memset(dp, 0 ,sizeof dp);
for(int i = 1;i<=s;i++){
for(auto p : val[i]){
for(int k = s;k>=0;k--){
dp[k + i] = max(dp[k+i], dp[k] + p);
}
}
}
int res = 0;
for(int i = 0;i<=s;i++){
res = max(res, dp[i]);
}
cout<<res<<endl;
}
컴파일 시 표준 에러 (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... |