[USACO11FEB] The Triangle S

题目描述

For her spectacular milk output for the previous month, Farmer John has awarded Bessie a prize -- with a twist. He has given her a triangular grid with N (1 <= N <= 700) rows (whose lengths vary from 1 through N, of course). Row i of the the grid has i values labeled v\_ij (-1,000,000,000 <= v\_ij <= 1,000,000,000) where j is in the range 1..i. Bessie chooses a sub-triangle whose side length is at least K (1 <= K <= 20; 1 <= K <= N) within the triangular grid. The sub-triangle is another triangular grid which might be oriented the same as the original triangle or might be 'upside down' with its shorter rows on the bottom instead of the top. After she chooses her sub-triangle, Farmer John will take the average of all the numbers in the sub-triangle, discarding the digits to the right of the decimal point, and give her that many gold coins (or take that many gold coins from her if the number is negative). Naturally, Bessie would like to maximize her prize (or minimize her loss). Help her solve this problem. By way of example, Bessie is given this triangular grid with N = 3 rows and must choose a sub-triangle with a side length of at least K = 2. A graphical representation of the triangle is shown below: ```cpp / \ / 5 \ /-8 4\ /2 -3 6\ --------- ``` She could choose any of five valid sub-triangles (one of which is the entire original triangle): ```cpp /\ / \ / \ / \ / \ /5 \ / 5 \ / \5\ / 5 \ / 5/\ /----\ /-8 4\ /-8 \4\ /-8 4\ /-8/ 4\ /\-8 4/\ /2 -3 6\ / 2 -3\6\ /-------\ / 2/-3 6\ / 2\-3/6 \ --------- --------- -2 -3 6 --------- ---------- entire lower top lower upside triangle left right down ``` The one that is lined below is the one with the highest average: ```cpp / \ / 5/\ /-8/ 4\ / 2/-3 6\ --------- ``` The average of this sub-triangle is (4+6-3)/3, which is about 2.3333...; without the fraction, the answer is 2. Help Bessie calculate the maximum amount of coins which she could receive. TIME LIMIT: 2 seconds MEMORY LIMIT: 32 MB 有一个n(1<=n<=700)行的等腰三角形,里面有很多数(-1,000,000,000 <= 数 <= 1,000,000,000),现在可以选择边长至少为k(1<=k<=20,1<=k<=n),至多为2k的相似等腰三角形,并且可以倒着选,比如样例可以有这些选择方法: 样例: ```cpp /\ / \ / \ / \ / \ /5 \ / 5 \ / \5\ / 5 \ / 5/\ /----\ /-8 4\ /-8 \4\ /-8 4\ /-8/ 4\ /\-8 4/\ /2 -3 6\ / 2 -3\6\ /-------\ / 2/-3 6\ / 2\-3/6 \ --------- --------- -2 -3 6 --------- ---------- entire lower top lower upside triangle left right down ``` 最后问你可以得到的最大平均值为多少(平均值:选出的三角形的累加和div选出个数)

输入输出格式

输入格式


\* Line 1: Two space-separated integers: N and K \* Lines 2..N+1: Line i+1 will contain i space-separated integers: v\_ij

输出格式


\* Line 1: The maximum number of coins that Bessie can receive (or, if negative, the best she can do for her loss).

输入输出样例

输入样例 #1

3 2 
5 
-8 4 
2 -3 6 

输出样例 #1

2 

说明

感谢 zzkksunboy 提供翻译。