K取方格数
题号:NC51282
时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
空间限制:C/C++/Rust/Pascal 32 M,其他语言64 M
64bit IO Format: %lld

题目描述

On an N × N chessboard with a non-negative number in each grid, Kaka starts his matrix travels with SUM = 0. For each travel, Kaka moves one rook from the left-upper grid to the right-bottom one, taking care that the rook moves only to the right or down. Kaka adds the number to SUM in each grid the rook visited, and replaces it with zero. It is not difficult to know the maximum SUM Kaka can obtain for his first travel. Now Kaka is wondering what is the maximum SUM he can obtain after his Kth travel. Note the SUM is accumulative during the K travels.

输入描述:

The first line contains two integers N and K described above. The following N lines represents the matrix. You can assume the numbers in the matrix are no more than 1000.

输出描述:

The maximum SUM Kaka can obtain after his Kth travel.
示例1

输入

复制
3 2
1 2 3
0 2 1
1 4 2

输出

复制
15