이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include"holiday.h"
#define ll long long
#define fi first
#define se second
#define pb push_back
using namespace std;
const int M=30;
ll INF=-1e9;
ll dp[M][M][2],a[M];
int n,s;
ll d(int x,int y,int z)
{
if(y<0)return INF;
if(x==-1||x==n)return 0;
if(y==0)return 0;
ll &u=dp[x][y][z];
if(u!=-1)return u;
u=a[x];
if(z==0)
{
u=max(d(x-1,y-2,z)+a[x],u);
u=max(d(x-1,y-1,z),u);
u=max(u,d(s+1,y-(s-x),1));
u=max(u,d(s+1,y-(s-x)-1,1)+a[x]);
return u;
}
u=max(d(x+1,y-1,z),u);
u=max(u,d(x+1,y-2,z)+a[x]);
return u;
}
ll d1(int x,int y,int z)
{
if(y<0)return INF;
if(x==-1||x==n)return 0;
if(y==0)return 0;
ll &u=dp[x][y][z];
if(u!=-1)return u;
u=a[x];
if(z==0)
{
u=max(d1(x+1,y-2,z)+a[x],u);
u=max(d1(x+1,y-1,z),u);
u=max(u,d1(s-1,y-abs(s-x),1));
u=max(u,d1(s-1,y-abs(s-x)-1,1)+a[x]);
return u;
}
u=max(d1(x-1,y-1,z),u);
u=max(u,d1(x-1,y-2,z)+a[x]);
return u;
}
long long findMaxAttraction(int N, int start, int D, int A[])
{
for(int i=0;i<10;i++)
{
for(int j=0;j<10;j++)
{
dp[i][j][0]=-1;
dp[i][j][1]=-1;
}
}
s=start;
n=N;
for(int i=0;i<n;i++)
{
a[i]=A[i];
}
ll u= d(start,D,0);
//memset(dp,-1,sizeof dp);
for(int i=0;i<10;i++)
{
for(int j=0;j<10;j++)
{
dp[i][j][0]=-1;
dp[i][j][1]=-1;
}
}
u=max(u,d1(start,D,0));
return u;
}
# | 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... |