# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
394788 | Anand | 수열 (APIO14_sequence) | C++14 | 17 ms | 3792 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
int q[100010] , p[210][100010];
long long a[100010] , D[100010] , E[100010];
using namespace std;
void path(int k , int n)
{
if (k < 0) return;
path(k - 1 , p[k][n]);
cout << n << " ";
}
int main()
{
int n , k , f , r;
cin >> n >> k;
for (int i = 1; i <= n; i++) scanf("%lld",a+i) , a[i] += a[i-1] , D[i] = -a[i] * a[i];
for (int i = 1; i <= k; i++)
{
q[f = r = 1] = i;
for (int j = i + 1; j <= n; j++)
{
while (f < r && a[q[f]] * a[j] + D[q[f]] <= a[q[f+1]] * a[j] + D[q[f+1]])
f++;
E[j] = a[q[f]] * a[j] + D[q[f]] - a[j] * a[j]; p[i][j] = q[f];
while (f < r && (D[q[r]] - D[q[r-1]]) * (a[q[r-1]] - a[j]) >= (D[j] - D[q[r-1]]) * (a[q[r-1]] - a[q[r]]))
r--;
q[r++]=j;
}
for(int j = i + 1; j <= n; j++) D[j] = E[j];
}
printf("%lld\n",D[n]+a[n]*a[n]);
path(k-1,p[k][n]);
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... |