World Languages, asked by bnkrnaveen, 8 months ago

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 infinite number of empty boxes available. At a time he can pick up any two boxes for transferring and if both the boxes say contain X and Y number of candies respectively, then it takes him exactly X+Y seconds of time. As he is to eager to collect all of them he has approached you to tell him the minimum time in which all the candies can be collected. Constraints: 1. 1 ≤T≤10 2. 1 ≤N≤ 10000 3. 1 ≤ [Candies in each box] ≤ 100009 Input: 1. First line of input is number of test case T 2. Each test case is comprised of two inputs a. First input of a test case is the number of boxes N b. Second input is N integers delimited by whitespace denoting number of candies in each box Output: Print minimum time required, in seconds, for each of the test case. Print each output on a new line. Sample Input 1: 1 4 1 2 3 4 Sample Output 1: 19 Sample Input 2: 1 5 1 2 3 4 5 Sample Output 2: 33 Explanation: In Example 1: 4 boxes, each containing 1, 2, 3 and 4 candies respectively. Adding 1 + 2 in a new box takes 3 seconds Adding 3 + 3 in a new box takes 6 seconds Adding 4 + 6 in a new box takes 10 seconds Hence total time taken is 19 seconds. There could be other combinations also, but overall time does not go below 19 seconds. In Example 2: 5 boxes, each containing 1, 2, 3, 4 and 5 candies respectively. Adding 1 + 2 in a new box takes 3 seconds Adding 3 + 3 in a new box takes 6 seconds Adding 4 + 5 in a new box takes 9 seconds Adding 6 + 9 in a new box takes 15 seconds Hence total time taken is 33 seconds. There could be other combinations also, but overall time does not go below 33 seconds.

Answers

Answered by currencyverma
3

Answer:

it is too long who read this

Answered by Anonymous
8

Answer:

too long ____uffffffffffff

Similar questions