CF463C.Gargari and Bishops

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Gargari is jealous that his friend Caisa won the game from the previous problem. He wants to prove that he is a genius.

He has a n×nn×n chessboard. Each cell of the chessboard has a number written on it. Gargari wants to place two bishops on the chessboard in such a way that there is no cell that is attacked by both of them. Consider a cell with number xx written on it, if this cell is attacked by one of the bishops Gargari will get xx dollars for it. Tell Gargari, how to place bishops on the chessboard to get maximum amount of money.

We assume a cell is attacked by a bishop, if the cell is located on the same diagonal with the bishop (the cell, where the bishop is, also considered attacked by it).

输入格式

The first line contains a single integer nn (2<=n<=2000)(2<=n<=2000) . Each of the next nn lines contains nn integers aija_{ij} (0<=aij<=109)(0<=a_{ij}<=10^{9}) — description of the chessboard.

输出格式

On the first line print the maximal number of dollars Gargari will get. On the next line print four integers: x1,y1,x2,y2x_{1},y_{1},x_{2},y_{2} (1<=x1,y1,x2,y2<=n)(1<=x_{1},y_{1},x_{2},y_{2}<=n) , where xix_{i} is the number of the row where the ii -th bishop should be placed, yiy_{i} is the number of the column where the ii -th bishop should be placed. Consider rows are numbered from 1 to nn from top to bottom, and columns are numbered from 1 to nn from left to right.

If there are several optimal solutions, you can print any of them.

输入输出样例

  • 输入#1

    4
    1 1 1 1
    2 1 1 0
    1 1 1 0
    1 0 0 1
    

    输出#1

    12
    2 2 3 2
    
首页