atcoder#ABC204D. [ABC204D] Cooking
[ABC204D] Cooking
Score : points
Problem Statement
Takahashi is going to cook dishes called Dish through .
Dish can be cooked by using an oven for consecutive minutes. An oven cannot be used for two or more dishes simultaneously.
If Takahashi has two ovens to use, what is the shortest number of minutes needed to cook all the dishes? Assume that all processes other than using ovens take negligible time.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the answer.
5
8 3 7 2 5
13
We can, for example, use the two ovens as follows to cook all the dishes in minutes.
- The first oven: Cook Dishes and in this order.
- The second oven: Cook Dishes , , and in this order.
2
1000 1
1000
9
3 14 15 9 26 5 35 89 79
138