#include<stdio.h>
#include<algorithm>
using namespace std;
int n,k,a[100010],w,top,d[110][100010];
struct data{
int x,gap,p;
}st[100010];
int main()
{
int i,j;
scanf("%d %d",&n,&k);
for(i=1;i<=n;i++) scanf("%d",&a[i]);
for(i=1;i<=k;i++)
{
st[0].p=i-1; top=0; st[0].gap=2147483647;
for(j=i;j<=n;j++)
{
while(st[top].x<=a[j] && top>0) top--;
top++;
st[top].p=j; st[top].x=a[j];
st[top].gap=min(st[top-1].gap,d[i-1][st[top-1].p]+st[top].x);
d[i][j]=st[top].gap;
}
}
printf("%d",d[k][n]);
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
45620 KB |
Output is correct |
2 |
Incorrect |
0 ms |
45620 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Halted |
0 ms |
0 KB |
- |