Election Paradox
문제
In Oddland, the leader of the country is determined by a democratic election. The country is divided into an odd number of regions, in which each region has an odd number of voters.
There are two (an even number!) political parties in Oddland, and the winning party is the one that wins the most number of regions. A party wins a region if it receives more votes than the other party in that region.
Under this system, it is possible that the losing party receives more votes than the winning party. For example, if there are three regions with , , and people, respectively, then a party could receive , , and votes and lose the election. In this case, the losing party received the majority of the votes in the total population.
Determine the largest number of votes a party can receive and still lose the election.
입력
The first line of input contains an odd integer (), which is the number of regions in Oddland.
The next line contains odd integers (), which are the populations of the cities.
출력
Display the largest number of votes a party can receive and still lose the election.
예제
예제 1
3 11 3 3
13