이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define int long long
typedef long long ll;
//By Tejas India, https://www.linkedin.com/in/1tejasjain/
void call(){
int s, n; cin>>s>>n;
vector<int> maxValueByWeight(s+1, 0);
maxValueByWeight[0] = 0;
for(int item=1; item<=n; item++){
int value, weight, quantity; cin>>value>>weight>>quantity;
// cout<<"Item: "<<item<<endl;
for(int i=1; i<=quantity; i++)
for(int ks = s; ks>=0; ks--){
if(ks-weight>=0)
maxValueByWeight[ks] = max(maxValueByWeight[ks], maxValueByWeight[ks-weight]+value);
// cout<<ks<<": "<<maxValueByWeight[ks]<<" ";
}
// cout<<endl;
}
cout<<maxValueByWeight[s]<<endl;
}
signed main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
ll t=1;
//cin>>t;
while(t--){
call();
}
return 0;
}
# | 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... |