# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
215865 | T0p_ | 수열 (APIO14_sequence) | C++14 | 2099 ms | 5424 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int from[202][100100];
long long arr[100100], qs[100100], dp[202][100100];
stack<int> s;
int main()
{
int n, m;
scanf(" %d %d",&n,&m);
for(int i=1 ; i<=n ; i++)
{
scanf(" %lld",&arr[i]);
qs[i] = arr[i] + qs[i-1];
}
for(int i=1 ; i<=m ; i++)
{
for(int j=1 ; j<=n ; j++)
{
int pos = 0;
for(int k=0 ; k<j ; k++)
{
long long v = dp[i-1][k] + (qs[j] - qs[k])*(qs[n] - qs[j]);
if(v > dp[i][j])
{
dp[i][j] = v;
pos = k;
}
}
from[i][j] = pos;
}
}
int pos;
long long Mval = 0;
for(int i=1 ; i<=n ; i++)
{
if(dp[m][i] > Mval)
{
Mval = dp[m][i];
pos = i;
}
}
for(int i=m ; i>=1 ; i--)
{
s.push(pos);
pos = from[i][pos];
}
printf("%lld\n",Mval);
while(!s.empty())
{
printf("%d ",s.top());
s.pop();
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |