Codeforces Round #603 (Div. 2)
A. Sweet Problem
You have three piles of candies: red, green and blue candies:
- the first pile contains only red candies and there are rr candies in it,
- the second pile contains only green candies and there are gg candies in it,
- the third pile contains only blue candies and there are bb 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.
The first line contains integer tt (1≤t≤10001≤t≤1000) — the number of test cases in the input. Then tt test cases follow.
Each test case is given as a separate line of the input. It contains three integers rr, gg and bb (1≤r,g,b≤1081≤r,g,b≤108) — the number of red, green and blue candies, respectively.
Print tt integers: the ii-th printed integer is the answer on the ii-th test case in the input.
6
1 1 1
1 2 1
4 1 1
7 4 10
8 1 4
8 2 8
1
2
2
10
5
9
In the first example, Tanya can eat candies for one day only. She can eat any pair of candies this day because all of them have different colors.
In the second example, Tanya can eat candies for two days. For example, she can eat red and green candies on the first day, and green and blue candies on the second day.
In the third example, Tanya can eat candies for two days. For example, she can eat red and green candies on the first day, and red and blue candies on the second day. Note, that two red candies will remain uneaten.
#include <bits/stdc++.h>
#include <vector>
#define TLE std::ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL); cout.precision(10);
using namespace std;
#define ll long long
const int mxn = 1e3+10;
int n,m,k,a[mxn],t;
const int inf = 0x3f3f3f;
ll read()
{
char ch ; int flag = 1; ll col = 0;
ch=getchar();
while(ch>'9' || ch<'0') {if(ch=='-') flag = -1 , ch = getchar();}
while(ch<='9' && ch>='0') {col = col*10+ch-'0' , ch=getchar();}
return flag*col;
}
int main()
{TLE;
cin>>t;
while(t--)
{
cin>>a[1]>>a[2]>>a[3];
if(*max_element(a+1,a+4)==a[1]+a[2]+a[3]-*max_element(a+1,a+4) )
cout<<*max_element(a+1,a+4)<<endl;
else if( *max_element(a+1,a+4)>a[1]+a[2]+a[3]-*max_element(a+1,a+4) )
cout<<a[1]+a[2]+a[3]-*max_element(a+1,a+4)<<endl;
else
cout<<(a[1]+a[2]+a[3])/2<<endl;
}
return 0;
}
B. PIN Codes