#abc162f. [abc162_f]Select Half
[abc162_f]Select Half
Problem Statement
Given is an integer sequence of length .
We will choose exactly elements from this sequence so that no two adjacent elements are chosen.
Find the maximum possible sum of the chosen elements.
Here denotes the greatest integer not greater than .
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the maximum possible sum of the chosen elements.
Sample Input 1
6
1 2 3 4 5 6
Sample Output 1
12
Choosing , , and makes the sum , which is the maximum possible value.
Sample Input 2
5
-1000 -100 -10 0 10
Sample Output 2
0
Choosing and makes the sum , which is the maximum possible value.
Sample Input 3
10
1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000
Sample Output 3
5000000000
Watch out for overflow.
Sample Input 4
27
18 -28 18 28 -45 90 -45 23 -53 60 28 -74 -71 35 -26 -62 49 -77 57 24 -70 -93 69 -99 59 57 -49
Sample Output 4
295