| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 46331 | top34051 | 수열 (APIO14_sequence) | C++17 | 1641 ms | 81732 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define maxn 100005
int n,k;
int p[maxn];
long long sum[maxn];
long long mem[2][maxn];
int track[205][maxn];
void f(int now,int l,int r,int posl,int posr)
{
if(l>r) return ;
int i,x;
long long t;
x = (l+r)/2;
mem[now%2][x] = -1;
for(i=max(x,posl);i<=posr;i++)
{
t = mem[(now-1)%2][i+1] + (sum[x]-sum[i+1])*sum[i+1];
if(t>mem[now%2][x])
{
mem[now%2][x] = t;
track[now][x] = i;
}
}
f(now,l,x-1,posl,track[now][x]);
f(now,x+1,r,track[now][x],posr);
}
void g(int now,int x)
{
if(now<=0) return ;
printf("%d ",track[now][x]);
g(now-1,track[now][x]+1);
}
main()
{
int i;
scanf("%d%d",&n,&k);
for(i=1;i<=n;i++) scanf("%d",&p[i]);
for(i=n;i>=1;i--) sum[i] = sum[i+1] + p[i];
for(i=1;i<=k;i++) f(i,1,n,1,n);
printf("%lld\n",mem[k%2][1]);
g(k,1);
}컴파일 시 표준 에러 (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... | ||||
