이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
bool cmp(tuple<int,int,int,int>q,tuple<int,int,int,int>w ){
auto &[a,b,c,type]=q;
auto &[d,e,f,tipe]=w;
if(b!=e){
return b<e;
}
else{
return type>tipe;
}
}
int main(){
int n;
cin>>n;
vector<tuple<int,int,int,int> > barang;
int sum=0;
for(int q=1;q<=n;q++){
int a,b,c;
cin>>a>>b>>c;
barang.push_back({a,b,c,0});
sum+=b;
}
int m;
cin>>m;
for(int q=1;q<=m;q++){
int a,b,c;
cin>>a>>b>>c;
barang.push_back({a,b,c,1});
}
sort(barang.begin(),barang.end(),cmp);
long long dp[sum+2];
for(int w=0;w<=sum;w++){
dp[w]=-1e15;
}
dp[0]=0;
for(int q=n+m;q>=1;q--){
auto [a,b,c,tipe]=barang[q-1];
if(tipe==0){
for(int w=sum;w>=a;w--){
dp[w]=max(dp[w],dp[w-a]-c);
}
}
else{
for(int w=0;w+a<=sum;w++){
dp[w]=max(dp[w],dp[w+a]+c);
}
}
}
long long ans=0;
for(int q=0;q<=sum;q++){
ans=max(ans,dp[q]);
}
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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |