CF431B.Shower Line

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Many students live in a dormitory. A dormitory is a whole new world of funny amusements and possibilities but it does have its drawbacks.

There is only one shower and there are multiple students who wish to have a shower in the morning. That's why every morning there is a line of five people in front of the dormitory shower door. As soon as the shower opens, the first person from the line enters the shower. After a while the first person leaves the shower and the next person enters the shower. The process continues until everybody in the line has a shower.

Having a shower takes some time, so the students in the line talk as they wait. At each moment of time the students talk in pairs: the (2i1)(2i-1) -th man in the line (for the current moment) talks with the (2i)(2i) -th one.

Let's look at this process in more detail. Let's number the people from 1 to 5. Let's assume that the line initially looks as 23154 (person number 2 stands at the beginning of the line). Then, before the shower opens, 2 talks with 3, 1 talks with 5, 4 doesn't talk with anyone. Then 2 enters the shower. While 2 has a shower, 3 and 1 talk, 5 and 4 talk too. Then, 3 enters the shower. While 3 has a shower, 1 and 5 talk, 4 doesn't talk to anyone. Then 1 enters the shower and while he is there, 5 and 4 talk. Then 5 enters the shower, and then 4 enters the shower.

We know that if students ii and jj talk, then the ii -th student's happiness increases by gijg_{ij} and the jj -th student's happiness increases by gjig_{ji} . Your task is to find such initial order of students in the line that the total happiness of all students will be maximum in the end. Please note that some pair of students may have a talk several times. In the example above students 1 and 5 talk while they wait for the shower to open and while 3 has a shower.

输入格式

The input consists of five lines, each line contains five space-separated integers: the jj -th number in the ii -th line shows gijg_{ij} ( 0<=gij<=1050<=g_{ij}<=10^{5} ). It is guaranteed that gii=0g_{ii}=0 for all ii .

Assume that the students are numbered from 1 to 5.

输出格式

Print a single integer — the maximum possible total happiness of the students.

输入输出样例

  • 输入#1

    0 0 0 0 9
    0 0 0 0 0
    0 0 0 0 0
    0 0 0 0 0
    7 0 0 0 0
    

    输出#1

    32
    
  • 输入#2

    0 43 21 18 2
    3 0 21 11 65
    5 2 0 1 4
    54 62 12 0 99
    87 64 81 33 0
    

    输出#2

    620
    

说明/提示

In the first sample, the optimal arrangement of the line is 23154. In this case, the total happiness equals:

(g23+g32+g15+g51)+(g13+g31+g54+g45)+(g15+g51)+(g54+g45)=32(g_{23}+g_{32}+g_{15}+g_{51})+(g_{13}+g_{31}+g_{54}+g_{45})+(g_{15}+g_{51})+(g_{54}+g_{45})=32 .

首页