Chef and Spells|Codechef Coding Problems.

Akash Kumar
2 min readAug 3, 2021

Problem Statement:

Chef has three spells. Their powers are A, B, and C respectively. Initially, Chef has 0 hit points, and if he uses a spell with power P, then his number of hit points increases by P

coding problem

Before going to sleep, Chef wants to use exactly two spells out of these three. Find the maximum number of hit points Chef can have after using the spells.

Input Format

  • The first line of the input contains a single integer T

denoting the number of test cases. The description of T

  • test cases follows.
  • The first and only line of each test case contains three space-separated integers A

, B, and C

  • .

Output Format

For each test case, print a single line containing one integer — the maximum number of hit points.

Constraints

  • 1≤T≤104
  • 1≤A,B,C≤108
Real World Coding Problems

Subtasks

Subtask #1 (100 points): original constraints

Sample Input 1

2
4 2 8
10 14 18

Sample Output 1

12
32

Explanation

Example case 1: Chef has three possible options:

  • Use the first and second spell and have 4+2=6
  • hitpoints.
  • Use the second and third spell and have 2+8=10
  • hitpoints.
  • Use the first and third spell and have 4+8=12
  • hitpoints.

Chef should choose the third option and use the spells with power 4

and 8 to have 12

hitpoints.

Example case 2: Chef should use the spells with power 14

and 18.

Code & Algoritm

/* author : @akash *//* 
problem is:-
*/#include<bits/stdc++.h>
using namespace std;
#define ll long long int
#define pb push_back
#define mod 1000000007
#define ld long double
void solve()
{
ll a,b,c;
cin>>a>>b>>c;
if(a+b>=b+c && a+b>=a+c)
{
cout<<a+b;
}
else if(a+c>=a+b && a+c>=b+c)
{
cout<<a+c;
}
else
{
cout<<b+c;
}
}
int main()
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cout.tie(0);
int t;
cin>>t;
while(t--)
{
solve();
cout<<"\n";
}
return 0;
}
// time complexity of this algorithm is : T(n)=O(1)

Thank You.

Akash Kumar

Software Engineer.

--

--

Akash Kumar

Student of Computer Science & Engineering at Moradabad Institute of Technology.