#ABC161B. Popular Vote
Popular Vote
题目描述
We have held a popularity poll for items on sale. Item received votes.
From these items, we will select as popular items. However, we cannot select an item with less than of the total number of votes.
If popular items can be selected, print Yes
; otherwise, print No
.
我们对正在销售的 商品进行了人气投票。商品 获得了 票。
我们将从这些 商品中选出 作为人气商品。但是,我们不能选择票数少于总票数 的商品。
如果可以选出 个受欢迎的项目,则打印 "是";否则打印 "否"。
输入格式
输入内容按以下格式标准输入:
输出格式
如果可以选择 个常用项目,则打印 "是";否则打印 "否"。
样例 #1
样例输入 #1
4 1
5 4 2 1
样例输出 #1
Yes
样例 #2
样例输入 #2
3 2
380 19 1
样例输出 #2
No
样例 #3
样例输入 #3
12 3
4 56 78 901 2 345 67 890 123 45 6 789
样例输出 #3
Yes
说明
数据规模与约定
- 是不同的。
- 输入的所有值都是整数。
样例 解释
共有 张选票。最受欢迎的项目获得了 票数,我们可以选择它。
样例 解释
共有 张选票。第二和第三受欢迎的项目获得的票数少于总票数的 ,因此我们不能选择它们。因此,我们不能选择两个最受欢迎的项目。