307977: CF1445B. Elimination
Memory Limit:512 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Elimination
题意翻译
有一场比赛分为两场,以单调不增排名。现在已知: + 第一场的第一百名成绩为 $a$,且第一场的前一百名(包含)在第二场中都至少得到了 $b$ 分。 + 第二场的第一百名成绩为 $c$,且第二场的前一百名(包含)在第一场中都至少得到了 $d$ 分。 求两场的成绩加起来后,总分第一百名的成绩最小可能是多少。题目描述
There is a famous olympiad, which has more than a hundred participants. The Olympiad consists of two stages: the elimination stage, and the final stage. At least a hundred participants will advance to the final stage. The elimination stage in turn consists of two contests. A result of the elimination stage is the total score in two contests, but, unfortunately, the jury lost the final standings and has only standings for the first and for the second contest separately. In each contest, the participants are ranked by their point score in non-increasing order. When two participants have a tie (earned the same score), they are ranked by their passport number (in accordance with local regulations, all passport numbers are distinct). In the first contest, the participant on the 100-th place scored $ a $ points. Also, the jury checked all participants from the 1-st to the 100-th place (inclusive) in the first contest and found out that all of them have at least $ b $ points in the second contest. Similarly, for the second contest, the participant on the 100-th place has $ c $ points. And the jury checked that all the participants from the 1-st to the 100-th place (inclusive) have at least $ d $ points in the first contest. After two contests, all participants are ranked by their total score in two contests in non-increasing order. When participants have the same total score, tie-breaking with passport numbers is used. The cutoff score to qualify to the final stage is the total score of the participant on the 100-th place. Given integers $ a $ , $ b $ , $ c $ , $ d $ , please help the jury determine the smallest possible value of the cutoff score.输入输出格式
输入格式
You need to process $ t $ test cases. The first line contains an integer $ t $ ( $ 1 \leq t \leq 3025 $ ) — the number of test cases. Then descriptions of $ t $ test cases follow. The first line of each test case contains four integers $ a $ , $ b $ , $ c $ , $ d $ ( $ 0 \le a,\,b,\,c,\,d \le 9 $ ; $ d \leq a $ ; $ b \leq c $ ). One can show that for any test case satisfying the constraints above, there is at least one olympiad scenario possible.
输出格式
For each test case print a single integer — the smallest possible cutoff score in some olympiad scenario satisfying the given information.
输入输出样例
输入样例 #1
2
1 2 2 1
4 8 9 2
输出样例 #1
3
12