이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<iostream>
#include<tuple>
#include<vector>
#include<algorithm>
using namespace std;
const int MAXN=2000, MAXC=50;
const long long INF=1e15;
bool CompareTuples(tuple<int, int, int> a, tuple<int, int, int> b)
{
return get<1>(a)>get<1>(b);
}
tuple<int, int, int> p[2*MAXN];
long long dp[2][MAXN*MAXC+1];
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
int n;
cin >> n;
for(int i=0; i<n; i++)
{
int c, f, v;
cin >> c >> f >> v;
p[i]={c, f, -v};
}
int m;
cin >> m;
for(int i=n; i<n+m; i++)
{
int c, f, v;
cin >> c >> f >> v;
p[i]={-c, f, v};
}
sort(p, p+n+m, CompareTuples);
for(int j=0; j<=n*MAXC; j++)
{
dp[0][j]=-INF, dp[1][j]=-INF;
}
dp[0][0]=0;
long long ans=0;
for(int i=0; i<n+m; i++)
{
for(int j=0; j<=n*MAXC; j++)
{
int c, f, v;
tie(c, f, v)=p[i];
dp[1][j]=max(dp[1][j], dp[0][j]);
if(j+c>=0 && j+c<=n*MAXC)
{
dp[1][j+c]=max(dp[1][j+c], dp[0][j]+v);
}
ans=max(ans, dp[0][j]);
}
for(int j=0; j<=n*MAXC; j++)
{
dp[0][j]=dp[1][j], dp[1][j]=-INF;
}
}
for(int i=0; i<=MAXC; i++)
{
ans=max(ans, dp[0][i]);
}
cout << ans << "\n";
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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |