博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【CodeForces 1263A --- Sweet Problem】
阅读量:2038 次
发布时间:2019-04-28

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

【CodeForces 1263A --- Sweet Problem】

Description

You have three piles of candies: red, green and blue candies:

  • the first pile contains only red candies and there are r candies in it,
  • the second pile contains only green candies and there are g candies in it,
  • the third pile contains only blue candies and there are b candies in it.

Each day Tanya eats exactly two candies of different colors. She is free to choose the colors of eaten candies: the only restriction that she can’t eat two candies of the same color in a day.

Find the maximal number of days Tanya can eat candies? Each day she needs to eat exactly two candies.

Input

The first line contains integer t (1≤t≤1000) — the number of test cases in the input. Then t test cases follow.

Each test case is given as a separate line of the input. It contains three integers r, g and b (1≤r,g,b≤108) — the number of red, green and blue candies, respectively.

Output

Print t integers: the i-th printed integer is the answer on the i-th test case in the input.

Sample Input

6

1 1 1
1 2 1
4 1 1
7 4 10
8 1 4
8 2 8

Sample Output

1

2
2
10
5
9

AC代码:

#include 
using namespace std;#define SIS std::ios::sync_with_stdio(false),cin.tie(0),cout.tie(0)#define endl '\n'int main(){
SIS; int arr[3],T; cin >> T; while(T--) {
cin >> arr[0] >> arr[1] >> arr[2]; sort(arr,arr+3); cout << min(arr[0]+arr[1],(arr[0]+arr[1]+arr[2])/2) << endl; } return 0;}

转载地址:http://ciyof.baihongyu.com/

你可能感兴趣的文章
完整过程解决 ERROR 1045 (28000): Access denied for user 'mysql'@'localhost' (using password: NO)
查看>>
Centos 与本地终端 上传、下载 文件
查看>>
linux下更改MySQL数据库存储路径
查看>>
WebService到底是什么?
查看>>
Git的安装和使用
查看>>
Git常用命令
查看>>
MySQL常见问题
查看>>
Spring Boot 入门之缓存和 NoSQL 篇(四)
查看>>
系统结构的发展以及为什么要使用分布式系统
查看>>
分布式系统发展史
查看>>
基于Docker的CaaS容器云平台架构设计
查看>>
几张图帮你理解 docker 基本原理及快速入门
查看>>
理解Docker架构
查看>>
基于Docker和Kubernetes的最佳架构实践
查看>>
Kubernetes实现SSO登录 (二)
查看>>
从 Spring Cloud 看一个微服务框架的「五脏六腑」
查看>>
使用Docker高效搭建开发环境
查看>>
微服务下的数据架构
查看>>
Nginx 容器教程
查看>>
linux下的命令: sudo ln -s 源文件 目标文件
查看>>