How can we solve this puzzle using java ?

How can we solve this puzzle using java ?

Sachin likes sweets a lot. So, he goes to a market of sweets. There is a row of sweet stalls. Every sweet stall has different sweets. To save some time, he decided to buy sweets from contiguous stalls. So, he can buy from as many stalls as he wants, but all of those stalls need to be contiguous. He also decided to buy only 1 kg of sweets from each of those stalls. Cost of 1 kg of sweets for each stall is given. There is a strange rule of billing in that market. And that rule is as follows- Total cost of all sweets bought is sum of the cost of all sweets multiplied by the cost of sweet he bought at the end. e.g. if he buys sweets having cost 2, 3, 4 in the same order than total cost of sweets will be 24+34+4*4=36.

Now he wonders what will be the total cost of all possible ways of buying sweets. Can you help him. Because this number could be large, you should take modulo of the final result by 10^9+7.

INPUT SPECIFICATION Your function contains a single argument- A One dimensional Integer array of Size N in which ith element denotes the cost of 1 kg sweets from ith stall. First line of input contains an Integer N denoting the size of Array. (1<=N<=10^5) Next N lines of input each containing a single integer from 1 to 9.

OUTPUT SPECIFICATION You must return an integer- sum of the cost of all possible ways of buying sweets modulo 10^9+7.

EXAMPLES Sample Test Case 1- Input 3 1 2 3

Output 53

Explanation Possible ways of buying sweets are-

a) 1

b) 1 2

c) 2

d) 1 2 3

e) 2 3

f) 3

cost of each of these is following-

a) 1*1= 1

b) 12+22= 6

c) 2*2= 4

d) 13+23+3*3= 18

e) 23+33= 15

f) 3*3= 9

Hence total cost will be 1+6+4+18+15+9=53

What I have tried:

class A {

static void printSubsets(int set[]) 
{

int n = set.length;
for (int i = 0; i < (1 << n); i++) {
for (int j = 0; j < n; j++) {
if ((i & (1 << j)) > 0) {
System.out.print(set[j] + " ");
}
}
System.out.println();
}
}

public static void main(String[] args) {
int set[] = { 1, 2, 3 };
printSubsets(set);
}
}

What additional code should be added to get the above result.

Can someone help how can we write the code

View Answers









Related Tutorials/Questions & Answers:

Ads