跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2051. Sereja and Swaps

    ID: 2057 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 4 上传者: 标签>枚举排序算法思想编程与模拟进阶难度共享题库Codeforces英文题面题目来源题面语言

Sereja and Swaps

题目描述

A. Sereja and Swaps
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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

A swap operation is the following sequence of actions:

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

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

Input

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

Output

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

Examples
Input
10 2
10 -1 2 2 2 2 2 2 -1 10
Output
32
Input
5 10
-1 -1 -1 -1 -1
Output
-1

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 1642 题。保留原作者与原赛事署名。