#P1043A. Elections

Elections

Elections

题面翻译

有两个人小A和小B参加选举,共有n个人参与投票,每人可以投k票。小A通过暗箱操作知道了每个人一定会投ai票给小B。 他很想赢,所以决定通过操作来改变每个人可以投的票数k。问k最小为多少时,小A能获胜。

输入:第一行,包含一个整数n,投票的人数。 第二行,n个整数ai,ai为第i个人投给小B的票数。

输出:仅一行,包含一个整数k,每个人可投的票数。

题目描述

Awruk is taking part in elections in his school. It is the final round. He has only one opponent — Elodreip. The are n n students in the school. Each student has exactly k k votes and is obligated to use all of them. So Awruk knows that if a person gives ai a_i votes for Elodreip, than he will get exactly kai k - a_i votes from this person. Of course 0kai 0 \le k - a_i holds.

Awruk knows that if he loses his life is over. He has been speaking a lot with his friends and now he knows a1,a2,,an a_1, a_2, \dots, a_n — how many votes for Elodreip each student wants to give. Now he wants to change the number k k to win the elections. Of course he knows that bigger k k means bigger chance that somebody may notice that he has changed something and then he will be disqualified.

So, Awruk knows a1,a2,,an a_1, a_2, \dots, a_n — how many votes each student will give to his opponent. Help him select the smallest winning number k k . In order to win, Awruk needs to get strictly more votes than Elodreip.

输入格式

The first line contains integer n n ( 1n100 1 \le n \le 100 ) — the number of students in the school.

The second line contains n n integers a1,a2,,an a_1, a_2, \ldots, a_n ( 1ai100 1 \leq a_i \leq 100 ) — the number of votes each student gives to Elodreip.

输出格式

Output the smallest integer k k ( kmaxai k \ge \max a_i ) which gives Awruk the victory. In order to win, Awruk needs to get strictly more votes than Elodreip.

样例 #1

样例输入 #1

5
1 1 1 5 1

样例输出 #1

5

样例 #2

样例输入 #2

5
2 2 3 2 2

样例输出 #2

5

提示

In the first example, Elodreip gets 1+1+1+5+1=9 1 + 1 + 1 + 5 + 1 = 9 votes. The smallest possible k k is 5 5 (it surely can't be less due to the fourth person), and it leads to 4+4+4+0+4=16 4 + 4 + 4 + 0 + 4 = 16 votes for Awruk, which is enough to win.

In the second example, Elodreip gets 11 11 votes. If k=4 k = 4 , Awruk gets 9 9 votes and loses to Elodreip.