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
- X consists of gems with non-decreasing beautifulness,
- y is the only perfect gem. (A perfect gem is a gem whose beautifulness equals to 10000)
- 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 (1≤n≤105). The second line contains n integers a1,a2,…,an. (0≤ai≤104, 1≤number of perfect gems≤10).
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