이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include"holiday.h"
#include <bits/stdc++.h>
using namespace std;
long long dp[3002][3002];
long long int findMaxAttraction(int n, int start, int d, int a[]) {
//dp[i][j] : best score if i visit city i on the jth day
if(d==0) return 0;
dp[start][1] = a[1];
long long ans = a[1];
for(int j = 2; j <= d; ++j){
for(int i = 0; i < n; ++i){
dp[i][j] = 0;
for(int k = 1; k < n; ++k){
if(j-k-1 >= 1){
if(i-k >= 0)
dp[i][j] = max(dp[i][j], a[i] + dp[i-k][j-k-1]);
if(i+k < n)
dp[i][j] = max(dp[i][j], a[i] + dp[i+k][j-k-1]);
}
}
ans = max(ans, dp[i][j]);
}
}
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... |