Ada and Dishes Codechef November long challenge problem solution -
Problem Statement-
Chef Ada is preparing dishes (numbered through ). For each valid , it takes minutes to prepare the -th dish. The dishes can be prepared in any order.
Ada has a kitchen with two identical burners. For each valid , to prepare the -th dish, she puts it on one of the burners and after minutes, removes it from this burner; the dish may not be removed from the burner before those minutes pass, because otherwise it cools down and gets spoiled. Any two dishes may be prepared simultaneously, however, no two dishes may be on the same burner at the same time. Ada may remove a dish from a burner and put another dish on the same burner at the same time.
What is the minimum time needed to prepare all dishes, i.e. reach the state where all dishes are prepared?
Input
- The first line of the input contains a single integer denoting the number of test cases. The description of test cases follows.
- The first line of each test case contains a single integer .
- The second line contains space-separated integers .
Output
For each test case, print a single line containing one integer ― the minimum number of minutes needed to prepare all dishes.
Constraints
- for each valid
Subtasks
Subtask #1 (1 points):
Subtask #2 (99 points): original constraints
Example Input
3
3
2 2 2
3
1 2 3
4
2 3 4 5
Example Output
4
3
7
Explanation
Example case 1: Place the first two dishes on the burners, wait for two minutes, remove both dishes and prepare the last one on one burner.
Example case 2: Place the first and third dish on the burners. When the first dish is prepared, remove it and put the second dish on the same burner.
Example case 3: Place the third and fourth dish on the burners. When the third dish is prepared, remove it and put the second dish on the same burner. Similarly, replace the fourth dish (when it is prepared) by the first dish on the other burner.
Comments
Post a Comment