传统题 1000ms 256MiB

F - Select Half

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

F - Select Half

Score : $600$ points

Problem Statement

Given is an integer sequence $A_1, ..., A_N$ of length $N$.

We will choose exactly $\left\lfloor \frac{N}{2} \right\rfloor$ elements from this sequence so that no two adjacent elements are chosen.

Find the maximum possible sum of the chosen elements.

Here $\lfloor x \rfloor$ denotes the greatest integer not greater than $x$.

Constraints

  • $2 \leq N \leq 2\times 10^5$
  • $|A_i|\leq 10^9$
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN

A1A_1 ...... ANA_N

Output

Print the maximum possible sum of the chosen elements.


6
1 2 3 4 5 6
12

Choosing $2$, $4$, and $6$ makes the sum $12$, which is the maximum possible value.


5
-1000 -100 -10 0 10
0

Choosing $-10$ and $10$ makes the sum $0$, which is the maximum possible value.


10
1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000 1000000000
5000000000

Watch out for overflow.


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
295

2024寒假入门组刷题营(八)

未参加
状态
已结束
规则
ACM/ICPC
题目
8
开始于
2024-2-5 13:30
结束于
2024-2-5 15:30
持续时间
2 小时
主持人
参赛人数
8