A1525.[COCI-2013_2014-contest5]#1 DOMINE
普及/提高-
通过率:0%
时间限制:1.00s
内存限制:128MB
题目描述
Mirko has a chessboard with N rows and just three columns. Slavica has written an integer on each field. Mirko has K dominoes at his disposal, their dimensions being 2x1, and has to arrange all of them on the board without overlapping, in a way that each domino covers exactly two fields of the board. He can rotate the dominoes as he pleases.
Help Mirko cover the largest sum of numbers possible with the dominoes!
输入格式
The first line of input contains the integer N (1 ≤ N ≤ 1000), the number of rows, and K (1 ≤ K ≤
1000), the number of dominoes available.
Each of the following N lines contains three integers written in the i th row of the board. All numbers will be lesser than 106 by absolute value.
输出格式
The first and only line of output must contain the maximal sum possible to cover with exactly K dominoes.
输入输出样例
输入#1
5 3 2 1 -1 1 3 2 0 2 3 2 1 1 3 3 0
输出#1
16
输入#2
2 2 0 4 1 3 5 1
输出#2
13
说明/提示
Clarification of the first example: It is optimal to place all dominoes horizontally and along the right
edge of the second row, right edge of the third row and along the left edge of the final row.