QOJ.ac

QOJ

Time Limit: 1 s Memory Limit: 1024 MB
[0]

# 3701. Necklace

Statistics

frog has n gems arranged in a cycle, whose beautifulness are a1,a2,,an. She would like to remove some gems to make them into a beautiful necklace without changing their relative order.

Note that a beautiful necklace can be divided into 3 consecutive parts X,y,Z, where

  1. X consists of gems with non-decreasing beautifulness,
  2. y is the only perfect gem. (A perfect gem is a gem whose beautifulness equals to 10000)
  3. Z consists of gems with non-increasing beautifulness.

Find out the maximum total beautifulness of the remaining gems.

Input

The input consists of multiple tests. For each test:

The first line contains 1 integer n (1n105). The second line contains n integers a1,a2,,an. (0ai104, 1number of perfect gems10).

Output

For each test, write 1 integer which denotes the maximum total remaining beautifulness.

Sample Input

6
10000 3 2 4 2 3
2
10000 10000

Sample Output

10010
10000