UVa – 12502 – Three Families

Note:

I don’t remember why but I marked this problem as a “Tricky” problem when I solved this !!

#include <bits/stdc++.h>

using namespace std;

int main()
{
    int x,y,z,t;
    cin>>t;
    for(int i=1; i<=t; i++)
    {
        cin>>x>>y>>z;
        x=(((2*x)-y)*z)/(x+y);
        if(x<=0)
            cout<<"0"<<endl;
        else if(x>z)
            cout<<z<<endl;
        else
            cout<<x<<endl;
    }
    return 0;
}


Leave a comment