# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
215919 | T0p_ | 수열 (APIO14_sequence) | C++14 | 49 ms | 5368 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
int back[202][100100];
long long arr[100100], qs[100100], dp[202][100100];
stack<int> p;
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=i ; j<=n ; j++)
{
int l = i-1, r = j-1;
while(l != r)
{
int mid = (l+r+1)>>1;
int bef = mid-1;
long long vm = dp[i-1][mid] + (qs[j] - qs[mid]) * (qs[n] - qs[j]);
long long vb = dp[i-1][bef] + (qs[j] - qs[bef]) * (qs[n] - qs[j]);
if(vm >= vb) l = mid;
else r = mid-1;
}
dp[i][j] = dp[i-1][l] + (qs[j] - qs[l]) * (qs[n] - qs[j]);
back[i][j] = l;
// for(int k=i-1 ; k<j ; k++)
// {
// long long nv = dp[i-1][k] + (qs[j] - qs[k]) * (qs[n] - qs[j]);
// if(nv > dp[i][j])
// {
// cout << i << ' ' << j << ' ' << k << endl;
// dp[i][j] = nv;
// pos = k;
// }
// }
// back[i][j] = pos;
// cout << back[i][j] << ' ';
}
// cout << endl;
}
int pos;
long long Mval = 0;
for(int i=m ; i<=n ; i++)
{
if(dp[m][i] > Mval)
{
Mval = dp[m][i];
pos = i;
}
}
for(int i=m ; i>0 ; i--)
{
p.push(pos);
pos = back[i][pos];
}
printf("%lld\n",Mval);
while(!p.empty())
{
printf("%d ",p.top());
p.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... |