English, asked by himanshin3156, 1 year ago

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 2*4+3*4+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.

java code

Answers

Answered by Anonymous
0

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) 11= 1\\b) 12+22= 6\\c) 22= 4\\d) 13+23+33= 18\\e) 23+33= 15\\f) 33= 9

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

=====================================

import itertools

test = [3,1,2,3]

cum_cost = 0

for num_visits in range(1,len(test)+1):

   print('Number of Visits: ',num_visits)

   for end_stall in test:

       print('\tEnd Stall',end_stall)

       remaining_stalls = test[:]

       remaining_stalls.remove(end_stall)

       visits_left = num_visits - 1

       stalls_left = len(remaining_stalls)

       perms = itertools.permutations(remaining_stalls,visits_left)

       perms1, perms2 = itertools.tee(perms)

       p = [perm for perm in perms1]

       s = sum([sum(perm)+end_stall for perm in perms2])*end_stall

       print('\t\tVisits left',visits_left)

       print('\t\tStalls left',stalls_left)

       print('\t\tpermutations',p)

       print('\t\tSum',s,' Running Sum',cum_cost)

       cum_cost+=s

   print('\n')

print('Grand Total',cum_cost)

Similar questions