This problem can be solved by dynamic programming. Let $dp[i]$ be the optimal sum of skill levels achievable by the first $i$ cows, assuming that the last team ends at cow $i$. If we knew that $k$ was the size of the last team (among the first $i$ cows), then the optimal sum of skill levels would be
This immediately yields an $O(NK^2)$ algorithm, since there are $N$ states, $K$ transitions, and each transition takes $O(K)$ time to compute. However, we can speed up the transitions by maintaining
#include <iostream>
#include <algorithm>
using namespace std;
int N,K;
int A[10000];
int dp[10000];
int main()
{
cin >> N >> K;
for(int i=0;i<N;i++)
cin >> A[i];
dp[0] = A[0];
for(int i=1;i<N;i++)
{
int mx = A[i];
for(int j=i;j>=0 && i+1-j <= K; j--)
{
mx = max(mx, A[j]);
if(j==0) dp[i] = max(dp[i],mx*(i+1-j));
else dp[i] = max(dp[i],dp[j-1] + mx*(i+1-j));
}
}
cout << dp[N-1] << '\n';
}