이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <vector>
using namespace std;
vector<vector<long long int> > dp;
long long int maxv(vector<long long int> v){
long long int M = -1000000;
for(int i=0;i<v.size();i++)
M = (M>v[i]) ? M : v[i];
return M;
}
int main(){
int n;
scanf("%d", &n);
vector<int> num;
num.resize(n);
for(int i=0;i<n;i++)
scanf("%d", &num[i]);
dp.resize(n);
dp[0].resize(2);
dp[0][0] = 0;
dp[0][1] = num[0];
for(int z=1;z<n;z++){
dp[z].resize(z+2);
dp[z][0] = maxv(dp[z]);
for(int i=1;i<z+2;i++)
dp[z][i] = dp[z-1][i-1] + i*num[z];
}
for(int z=0;z<n;z++){
for(int i=0;i<z+2;i++)
printf("%4lld", dp[z][i]);
printf("\n");
}
printf("%lld\n", maxv(dp[n-1]));
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |