# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1046609 | Newtonabc | Knapsack (NOI18_knapsack) | C++14 | 1036 ms | 17100 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const int N=2e3+10;
vector<pair<long long,long long> > v;
int dp[N];
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
int s,n;
cin>>s >>n;
while(n--){
long long a,b,c,sum=0;
cin>>a >>b >>c;
long long tmp=1;
while(c>=tmp){
if(b*tmp>s) break;
v.push_back(make_pair(a*tmp,b*tmp));
c-=tmp;
tmp*=2;
}
if(b*c<=s) v.push_back(make_pair(a*c,b*c));
}
for(int i=0;i<v.size();i++){
long long val=v[i].first,wg=v[i].second;
for(int j=s;j>=1;j--){
if(j-wg<0) break;
dp[j]=max(dp[j],dp[j-(int)wg]+(int)val);
}
}
cout<<dp[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... |