跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2775. Fragile Bridges

    ID: 2781 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 6 上传者: 标签>动态规划提高难度共享题库Codeforces英文题面题目来源题面语言

Fragile Bridges

题目描述

C. Fragile Bridges
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

You are playing a video game and you have just reached the bonus level, where the only possible goal is to score as many points as possible. Being a perfectionist, you've decided that you won't leave this level until you've gained the maximum possible number of points there.

The bonus level consists of n small platforms placed in a line and numbered from 1 to n from left to right and (n-1) bridges connecting adjacent platforms. The bridges between the platforms are very fragile, and for each bridge the number of times one can pass this bridge from one of its ends to the other before it collapses forever is known in advance.

The player's actions are as follows. First, he selects one of the platforms to be the starting position for his hero. After that the player can freely move the hero across the platforms moving by the undestroyed bridges. As soon as the hero finds himself on a platform with no undestroyed bridge attached to it, the level is automatically ended. The number of points scored by the player at the end of the level is calculated as the number of transitions made by the hero between the platforms. Note that if the hero started moving by a certain bridge, he has to continue moving in the same direction until he is on a platform.

Find how many points you need to score to be sure that nobody will beat your record, and move to the next level with a quiet heart.

Input

The first line contains a single integer n (2≤n≤105) − the number of platforms on the bonus level. The second line contains (n-1) integers ai (1≤ai≤109, 1≤i<n) − the number of transitions from one end to the other that the bridge between platforms i and i+1 can bear.

Output

Print a single integer − the maximum number of points a player can get on the bonus level.

Please, do not use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the cin, cout streams or the %I64d specifier.

Examples
Input
5
2 1 2 1
Output
5
Note

One possibility of getting 5 points in the sample is starting from platform 3 and consequently moving to platforms 4, 3, 2, 1 and 2. After that the only undestroyed bridge is the bridge between platforms 4 and 5, but this bridge is too far from platform 2 where the hero is located now.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2443 题。保留原作者与原赛事署名。