CF425A.Sereja and Swaps

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

As usual, Sereja has array aa , its elements are integers: a[1],a[2],...,a[n]a[1],a[2],...,a[n] . Let's introduce notation:

A swap operation is the following sequence of actions:

  • choose two indexes i,ji,j (ij)(i≠j) ;
  • perform assignments tmp=a[i],a[i]=a[j],a[j]=tmptmp=a[i],a[i]=a[j],a[j]=tmp .

What maximum value of function m(a)m(a) can Sereja get if he is allowed to perform at most kk swap operations?

输入格式

The first line contains two integers nn and kk (1<=n<=200; 1<=k<=10)(1<=n<=200; 1<=k<=10) . The next line contains nn integers a[1]a[1] , a[2]a[2] , ...... , a[n]a[n] (1000<=a[i]<=1000)(-1000<=a[i]<=1000) .

输出格式

In a single line print the maximum value of m(a)m(a) that Sereja can get if he is allowed to perform at most kk swap operations.

输入输出样例

  • 输入#1

    10 2
    10 -1 2 2 2 2 2 2 -1 10
    

    输出#1

    32
    
  • 输入#2

    5 10
    -1 -1 -1 -1 -1
    

    输出#2

    -1
    
首页