CF1841F.Monocarp and a Strategic Game
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Monocarp plays a strategic computer game in which he develops a city. The city is inhabited by creatures of four different races — humans, elves, orcs, and dwarves.
Each inhabitant of the city has a happiness value, which is an integer. It depends on how many creatures of different races inhabit the city. Specifically, the happiness of each inhabitant is 0 by default; it increases by 1 for each other creature of the same race and decreases by 1 for each creature of a hostile race. Humans are hostile to orcs (and vice versa), and elves are hostile to dwarves (and vice versa).
At the beginning of the game, Monocarp's city is not inhabited by anyone. During the game, n groups of creatures will come to his city, wishing to settle there. The i -th group consists of ai humans, bi orcs, ci elves, and di dwarves. Each time, Monocarp can either accept the entire group of creatures into the city, or reject the entire group.
The game calculates Monocarp's score according to the following formula: m+k , where m is the number of inhabitants in the city, and k is the sum of the happiness values of all creatures in the city.
Help Monocarp earn the maximum possible number of points by the end of the game!
输入格式
The first line contains an integer n ( 1≤n≤3⋅105 ) — the number of groups of creatures that come to Monocarp's city.
Then n lines follow. The i -th of them contains four integers ai , bi , ci , and di ( 0≤ai,bi,ci,di≤109 ) — the number of humans, orcs, elves and dwarves (respectively) in the i -th group.
输出格式
Output a single number — the maximum score Monocarp can have by the end of the game. Your answer will be considered correct if its absolute or relative error does not exceed 10−9 . That is, if your answer is a , and the jury's answer is b , then the solution will be accepted if max(1,∣b∣)∣a−b∣≤10−9 .
Note that the correct answer is always an integer, but sometimes it doesn't fit in 64 -bit integer types, so you are allowed to print it as a non-integer number.
输入输出样例
输入#1
5 0 0 1 0 1 3 4 2 2 5 1 2 4 5 4 3 1 4 4 5
输出#1
85
输入#2
4 3 3 1 5 5 1 5 3 4 4 4 1 1 3 4 4
输出#2
41
说明/提示
In the first example, the best course of action is to accept all of the groups.
In the second example, the best course of action is to accept the groups 2 and 3 , and decline the groups 1 and 4 .