CF201B.Guess That Car!

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

A widely known among some people Belarusian sport programmer Yura possesses lots of information about cars. That is why he has been invited to participate in a game show called "Guess That Car!".

The game show takes place on a giant parking lot, which is 4n4n meters long from north to south and 4m4m meters wide from west to east. The lot has n+1n+1 dividing lines drawn from west to east and m+1m+1 dividing lines drawn from north to south, which divide the parking lot into nmn·m 44 by 44 meter squares. There is a car parked strictly inside each square. The dividing lines are numbered from 00 to nn from north to south and from 00 to mm from west to east. Each square has coordinates (i,j)(i,j) so that the square in the north-west corner has coordinates (1,1)(1,1) and the square in the south-east corner has coordinates (n,m)(n,m) . See the picture in the notes for clarifications.

Before the game show the organizers offer Yura to occupy any of the (n+1)(m+1)(n+1)·(m+1) intersection points of the dividing lines. After that he can start guessing the cars. After Yura chooses a point, he will be prohibited to move along the parking lot before the end of the game show. As Yura is a car expert, he will always guess all cars he is offered, it's just a matter of time. Yura knows that to guess each car he needs to spend time equal to the square of the euclidean distance between his point and the center of the square with this car, multiplied by some coefficient characterizing the machine's "rarity" (the rarer the car is, the harder it is to guess it). More formally, guessing a car with "rarity" cc placed in a square whose center is at distance dd from Yura takes cd2c·d^{2} seconds. The time Yura spends on turning his head can be neglected.

It just so happened that Yura knows the "rarity" of each car on the parking lot in advance. Help him choose his point so that the total time of guessing all cars is the smallest possible.

输入格式

The first line contains two integers nn and mm (1<=n,m<=1000)(1<=n,m<=1000) — the sizes of the parking lot. Each of the next nn lines contains mm integers: the jj -th number in the ii -th line describes the "rarity" cijc_{ij} ( 0<=cij<=1000000<=c_{ij}<=100000 ) of the car that is located in the square with coordinates (i,j)(i,j) .

输出格式

In the first line print the minimum total time Yura needs to guess all offered cars. In the second line print two numbers lil_{i} and ljl_{j} ( 0<=li<=n,0<=lj<=m0<=l_{i}<=n,0<=l_{j}<=m ) — the numbers of dividing lines that form a junction that Yura should choose to stand on at the beginning of the game show. If there are multiple optimal starting points, print the point with smaller lil_{i} . If there are still multiple such points, print the point with smaller ljl_{j} .

Please do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.

输入输出样例

  • 输入#1

    2 3
    3 4 5
    3 9 1
    

    输出#1

    392
    1 1
    
  • 输入#2

    3 4
    1 0 0 0
    0 0 3 0
    0 0 5 5
    

    输出#2

    240
    2 3
    

说明/提示

In the first test case the total time of guessing all cars is equal to 3·8 + 3·8 + 4·8 + 9·8 + 5·40 + 1·40 = 392.

The coordinate system of the field:

首页