이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
struct d1{
int v, w, k;
double r;
};
bool comp(d1 a, d1 b){
if(a.r==b.r) return a.w<b.w;
return a.r>b.r;
}
int main(){
cin.tie(0)->sync_with_stdio(false);
int s, n; cin>>s>>n;
vector<d1> d(n);
for (int i=0; i<n; i++) {
cin>>d[i].v>>d[i].w>>d[i].k;
d[i].r=double(d[i].v)/d[i].w;
}
sort(d.begin(), d.end(), comp);
vector<int> dp(s+1, -1);
dp[0]=0;
for (int i=0; i<n; i++){
for (int x=s; x>=0; x--){
if(dp[x]>=0){
for (int j=0; j<d[i].k && x+(j+1)*d[i].w<=s; j++){
dp[x+(j+1)*d[i].w]=max(dp[x]+(j+1)*d[i].v, dp[x+(j+1)*d[i].w]);
}
}
}
}
int ans=0;
for (int i=0; i<=s; i++) ans=max(ans, dp[i]);
cout<<ans<<endl;
}
# | 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... |