이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "fish.h"//sub4
#include <bits/stdc++.h>
using namespace std;
long long max_weights(int n, int m,vector<int> x,vector<int> y,vector<int> w)
{
long long tab[n][n+1]={0},ans=0,dp[n][n+1][n+1];
for(int a=0;a<n;a++)
{
for(int b=0;b<n+1;b++)
{
tab[a][b]=0;
for(int c=0;c<n;c++)
dp[a][b][c]=0;
}
}
for(int a=0;a<m;a++)
tab[x[a]][y[a]+1]=w[a];
for(int a=0;a<n;a++)
{
for(int b=1;b<n+1;b++)
tab[a][b]+=tab[a][b-1];
}
for(int a=0;a<n+1;a++)
{
for(int b=0;b<n+1;b++)
{
if(a>b)
dp[1][a][b]=tab[1][a]-tab[1][b];
else
dp[1][a][b]=tab[0][b]-tab[0][a];
}
}
for(int c=2;c<n;c++)
{
for(int a=0;a<n+1;a++)
{
for(int b=0;b<n+1;b++)
{
for(int d=0;d<n+1;d++)
{
dp[c][a][b]=max(dp[c][a][b],dp[c-1][d][a]);
if(a>b)
dp[c][a][b]=max(dp[c-1][d][a]+tab[c][a]-tab[c][b],dp[c][a][b]);
else if (b>d)
{
dp[c][a][b]=max(dp[c-1][d][a]+tab[c-1][b]-tab[c-1][max(d,a)],dp[c][a][b]);
}
}
}
}
}
for(int a=0;a<n+1;a++)
{
for(int b=0;b<n+1;b++)
ans=max(ans,dp[n-1][a][b]);
}
return ans;
}
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |