C Program for Collecting Candies Problem (TCS Codevita) | PrepInsta
Collecting Candies
TCS CodeVita is coding competition organized by TCS every year, promoting Programming-As-S-Sport. It has touched many milestones Since it was launched globally in 2014, with registrations from country and overseas. Collecting Candies is one of the sample problem of TCS CodeVita competition. It is solved by using a sorting algorithm with some changes here and there, here we have provided a solution in C language for this problem.
Problem Description
Question:- Krishna loves candies a lot, so whenever he gets them, he stores them so that he can eat them later whenever he wants to.
He has recently received N boxes of candies each containing Ci candies where Ci represents the total number of candies in the ith box. Krishna wants to store them in a single box. The only constraint is that he can choose any two boxes and store their joint contents in an empty box only. Assume that there are an infinite number of empty boxes available.
At a time he can pick up any two boxes for transferring and if both the boxes contain X and Y number of candies respectively, then it takes him exactly X+Y seconds of time. As he is too eager to collect all of them he has approached you to tell him the minimum time in which all the candies can be collected.
Input Format:
- The first line of input is the number of test case T
- Each test case is comprised of two inputs
- The first input of a test case is the number of boxes N
- The second input is N integers delimited by whitespace denoting the number of candies in each box
Output Format: Print minimum time required, in seconds, for each of the test cases. Print each output on a new line.
Constraints:
- 1 < T < 10
- 1 < N< 10000
- 1 < [Candies in each box] < 100009
C Code
#include <stdio.h>
int main()
{
int i,j;
int num_box=0,k=0,sum=0,times=0,tst_case,temp=0;
long c[10000],s[10000];
printf("Enter the number of test case:");
scanf("%d",&tst_case);
printf("Enter the number of boxes:");
for(int l=0;l<tst_case;l++)
{
scanf("%d",&num_box);
}
printf("Enter the number of candies in each box:");
for(i=0;i<num_box;i++)
{
scanf("%ld",&c[i]);
}
for(i=0;i<num_box;i++)
{
for(j=i+1;j<num_box;j++)
{
if(c[i]>c[j])
{
temp=c[i];
c[i]=c[j];
c[j]=temp;
}
}
}
sum=0;
k=0;
for(i=0;i<num_box;i++)
{
sum=sum+c[i];
s[k]=sum;
k++;
}
times=0;
printf("Minimum time requried:");
for(i=1;i<k;i++)
times=times+s[i];
printf("%d\n",times);
return 0;
}
Output 1 4 1 2 3 4 19
Houses Problem in other Languages
Python
To find the solution of Collecting Candies problem in Python Programming language click on the button below:
JAVA
To find the solution of Collecting Candies problem in Java Programming language click on the button below:
C++
To find the solution of Collecting Candies problem in C++ Programming language click on the button below:
Login/Signup to comment