码迷,mamicode.com
首页 > Windows程序 > 详细

160A - Twins

时间:2014-12-13 08:32:13      阅读:275      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   io   ar   color   os   sp   for   

A. Twins
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Imagine that you have a twin brother or sister. Having another person that looks exactly like you seems very unusual. It‘s hard to say if having something of an alter ego is good or bad. And if you do have a twin, then you very well know what it‘s like.

Now let‘s imagine a typical morning in your family. You haven‘t woken up yet, and Mom is already going to work. She has been so hasty that she has nearly forgotten to leave the two of her darling children some money to buy lunches in the school cafeteria. She fished in the purse and found some number of coins, or to be exact, n coins of arbitrary values a1,?a2,?...,?an. But as Mom was running out of time, she didn‘t split the coins for you two. So she scribbled a note asking you to split the money equally.

As you woke up, you found Mom‘s coins and read her note. "But why split the money equally?" — you thought. After all, your twin is sleeping and he won‘t know anything. So you decided to act like that: pick for yourself some subset of coins so that the sum of values of your coins is strictly larger than the sum of values of the remaining coins that your twin will have. However, you correctly thought that if you take too many coins, the twin will suspect the deception. So, you‘ve decided to stick to the following strategy to avoid suspicions: you take the minimum number of coins, whose sum of values is strictly more than the sum of values of the remaining coins. On this basis, determine what minimum number of coins you need to take to divide them in the described manner.

Input

The first line contains integer n (1?≤?n?≤?100) — the number of coins. The second line contains a sequence of n integers a1a2, ..., an(1?≤?ai?≤?100) — the coins‘ values. All numbers are separated with spaces.

Output

In the single line print the single number — the minimum needed number of coins.

Sample test(s)
input
2
3 3
output
2
input
3
2 1 2
output
2
Note

In the first sample you will have to take 2 coins (you and your twin have sums equal to 6,?0 correspondingly). If you take 1 coin, you get sums 3,?3. If you take 0 coins, you get sums 0,?6. Those variants do not satisfy you as your sum should be strictly more that your twins‘ sum.

In the second sample one coin isn‘t enough for us, too. You can pick coins with values 1,?2 or 2,?2. In any case, the minimum number of coins equals 2.

n= gets.to_i
a = gets.split.map(&:to_i)
tot, sum, i= 0,0,0
a.each {|x| tot += x}
a.sort! {|x,y| y<=>x}
until sum>tot-sum
  sum += a[i]
  i += 1
end
puts i

160A - Twins

标签:des   style   blog   io   ar   color   os   sp   for   

原文地址:http://blog.csdn.net/felixtsui/article/details/41907299

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!