博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CF-478C
阅读量:5062 次
发布时间:2019-06-12

本文共 1547 字,大约阅读时间需要 5 分钟。

You have r red, g green and b blue balloons. To decorate a single table for the banquet you need exactly three balloons. Three balloons attached to some table shouldn't have the same color. What maximum number t of tables can be decorated if we know number of balloons of each color?

Your task is to write a program that for given values rg and b will find the maximum number t of tables, that can be decorated in the required manner.

Input

The single line contains three integers rg and b (0 ≤ r, g, b ≤ 2·109) — the number of red, green and blue baloons respectively. The numbers are separated by exactly one space.

Output

Print a single integer t — the maximum number of tables that can be decorated in the required manner.

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

In the first sample you can decorate the tables with the following balloon sets: "rgg", "gbb", "brr", "rrg", where "r", "g" and "b" represent the red, green and blue balls, respectively.

 

分析:

1、首先排序,

2.如果前两者之和的两倍小于第三者。那么个数就是前两者之和的个数

3.如果前两者之和的两倍大于第三者。我们可以这么想,先用第三者与前两者2:1平衡掉,然后前两者2:1一直走。也就是总数除以三

1 #include
2 #include
3 #include
4 using namespace std; 5 int main() 6 { 7 long long a[3]; 8 scanf("%lld%lld%lld",&a[0],&a[1],&a[2]); 9 sort(a,a+3);10 if((a[0]+a[1])*2<=a[2])11 {12 printf("%d\n",a[0]+a[1]);13 }14 else15 {16 printf("%d\n",(a[0]+a[1]+a[2])/3);17 }18 }

 

转载于:https://www.cnblogs.com/1625--H/p/9362962.html

你可能感兴趣的文章
实用手册:130+ 提高开发效率的 vim 常用命令
查看>>
基于 jQuery & CSS3 实现智能提示输入框光标位置
查看>>
Nibbler – 免费的网站测试和指标评分工具
查看>>
转-使用EditPlus技巧,提高工作效率
查看>>
ACM/ICPC 之 电力网络-EK算法(POJ1459)
查看>>
wordpress 支持上传中文名称文件
查看>>
中国剩余定理---FZU 1402 猪的安家
查看>>
最近在线笔试的一些感想和总结,阿里巴巴,腾讯,百度,360。c++研发,机器学习等岗位...
查看>>
eclipse 中文版 变成 英文版 方法
查看>>
系统设计
查看>>
二维码扫描
查看>>
js页面滚动浮动层智能定位(MooTools)实例页面
查看>>
前端加密技术
查看>>
JS之表单验证
查看>>
Python操作MongoDB数据库
查看>>
VMware 锐捷 NAT模式的服务自动关闭的解决办法
查看>>
MFC 打开文件夹 调用其他程序 打开文件
查看>>
1058. A+B in Hogwarts (20)
查看>>
MySQL对索引的使用
查看>>
Centos 6.6 下搭建php5.2.17+Zend Optimizer3.3.9+Jexus环境
查看>>