이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
const long long mod=998244353;
long long n,k,a[5050],dp[5050][5050];
long long f(int x,int ma)
{
if(ma>k)return 1e9+2;
if(x==n)return 0;
if(dp[x][ma]!=-1)return dp[x][ma];
long long num=1e9+2;
for(int i=x;i<n;i++)
{
num=min(num,f(i+1,ma+1)+a[i]-a[x]+1);
}
return dp[x][ma]=num;
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
memset(dp,-1,sizeof dp);
//freopen(".in","r",stdin);
//freopen(".out","w",stdout);
cin>>n>>k;
if(n>2000)
{
cout<<-1;
return 0;
}
for(int i=0;i<n;i++)cin>>a[i];
cout<<f(0,0);
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |