# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1033513 | warrenn | Cloud Computing (CEOI18_clo) | C++14 | 2551 ms | 262144 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define int long long
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;
}
}
signed 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);
int dp[2][sum+1];
for(int q=0;q<=1;q++){
for(int w=0;w<=sum;w++){
dp[q][w]=-1e15;
}
}
dp[(n+m+1)%2][0]=0;
for(int q=n+m;q>=1;q--){
for(int w=0;w<=sum;w++){
auto [a,b,c,tipe]=barang[q-1];
dp[q%2][w]=dp[(q+1)%2][w];
if(tipe==0){
if(w-a>=0){
dp[q%2][w]=max(dp[q%2][w],dp[(q+1)%2][w-a]-c);
}
}
else{
if(w+a<=sum){
dp[q%2][w]=max(dp[q%2][w],dp[(q+1)%2][w+a]+c);
}
}
}
}
int ans=-1e15;
for(int q=0;q<=sum;q++){
ans=max(ans,dp[1][q]);
}
cout<<ans<<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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |