CF321D.Ciel and Flipboard

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Fox Ciel has a board with nn rows and nn columns, there is one integer in each cell.

It's known that nn is an odd number, so let's introduce . Fox Ciel can do the following operation many times: she choose a sub-board with size xx rows and xx columns, then all numbers in it will be multiplied by -1.

Return the maximal sum of numbers in the board that she can get by these operations.

输入格式

The first line contains an integer nn , ( 1<=n<=331<=n<=33 , and nn is an odd integer) — the size of the board.

Each of the next nn lines contains nn integers — the numbers in the board. Each number doesn't exceed 10001000 by its absolute value.

输出格式

Output a single integer: the maximal sum of numbers in the board that can be accomplished.

输入输出样例

  • 输入#1

    3
    -1 -1 1
    -1 1 -1
    1 -1 -1
    

    输出#1

    9
    
  • 输入#2

    5
    -2 0 0 0 -2
    0 -2 0 -2 0
    0 0 -2 0 0
    0 -2 0 -2 0
    -2 0 0 0 -2
    

    输出#2

    18
    

说明/提示

In the first test, we can apply this operation twice: first on the top left 2×22×2 sub-board, then on the bottom right 2×22×2 sub-board. Then all numbers will become positive.

首页