문제
The cows are taking a multiple choice test. But instead of a standard test where your selected choices are scored for each question individually and then summed, in this test your selected choices are summed before being scored.
Specifically, you are given () groups of integer vectors on the 2D plane, where each vector is denoted by an ordered pair . Choose one vector from each group such that the sum of the vectors is as far away from the origin as possible.
It is guaranteed that the total number of vectors is at most . Each group has size at least , and within a group, all vectors are distinct. It is also guaranteed that every and coordinate has absolute value at most .
입력
The first line contains , the number of groups.
Each group starts with , the number of vectors in the group, followed by lines containing the vectors in that group. Consecutive groups are separated by newlines.
출력
The maximum possible squared Euclidean distance.
예제 입력 1
3
2
-2 0
1 0
2
0 -2
0 1
3
-5 -5
5 1
10 10
예제 출력 1
242
점수
In test cases 1-5, the total number of vectors is at most .In test cases 6-9, every group has size exactly two.Test cases 10-17 satisfy no additional constraints.
코드를 제출하려면 로그인이 필요합니다.
로그인