Submit | All submissions | Best solutions | Back to list |
MIXTURES - Mixtures |
Harry Potter has n mixtures in front of him, arranged in a row. Each mixture has one of 100 different colors (colors have numbers from 0 to 99).
He wants to mix all these mixtures together. At each step, he is going to take two mixtures that stand next to each other and mix them together, and put the resulting mixture in their place.
When mixing two mixtures of colors a and b, the resulting mixture will have the color (a+b) mod 100.
Also, there will be some smoke in the process. The amount of smoke generated when mixing two mixtures of colors a and b is a*b.
Find out what is the minimum amount of smoke that Harry can get when mixing all the mixtures together.
Input
There will be a number of test cases in the input.
The first line of each test case will contain n, the number of mixtures, 1 <= n <= 100.
The second line will contain n integers between 0 and 99 - the initial colors of the mixtures.
Output
For each test case, output the minimum amount of smoke.
Example
Input: 2 18 19 3 40 60 20 Output: 342 2400
In the second test case, there are two possibilities:
- first mix 40 and 60 (smoke: 2400), getting 0, then mix 0 and 20 (smoke: 0); total amount of smoke is 2400
- first mix 60 and 20 (smoke: 1200), getting 80, then mix 40 and 80 (smoke: 3200); total amount of smoke is 4400
The first scenario is a much better way to proceed.
Added by: | Tomek Czajka |
Date: | 2005-05-03 |
Time limit: | 3s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: NODEJS PERL6 VB.NET |
Resource: | Purdue Programming Contest Training |
hide comments
|
||||||||||||||
2014-12-24 22:18:00 freaker
nice problem and below given link is so useful !!! |
||||||||||||||
2014-11-07 12:19:49 mayank
For me the problem amounted to (a%c+b%c)%c=(a+b)%c. :) killed a lot of time! |
||||||||||||||
2014-09-24 12:32:49 Gaurav Ahirwar
YippE! Finally Did.. Bottom-up Approach!:).. was stuck for one and a half day... good one for beginner like me :) |
||||||||||||||
2014-08-29 20:00:34 Kaushik G Kulkarni
My 50th on SPOJ. Nice problem to reach half century . |
||||||||||||||
2014-08-15 08:01:17 Pratyush Kumar
For all those confused about WA && TLE, cross check your output with SPOJ forum, google it, and then check for EOF while scanning the file. |
||||||||||||||
2014-08-06 19:02:15 Kanav Vats
nice one to learn dp... |
||||||||||||||
2014-07-26 23:18:56 Vivek Thakur
learn a lot..!! http://www.geeksforgeeks.org/dynamic-programming-set-8-matrix-chain-multiplication/ @Sahil Dua below link may help you :) http://www.spoj.com/forum/viewtopic.php?f=3&t=4007&p=16920&hilit=MIXTURES&sid=b391f539de2bccc9b20a28bb489a76b3#p16920 Last edit: 2014-07-26 23:22:50 |
||||||||||||||
2014-07-23 08:50:41 Sahil Dua
Any tricky case except those mentioned in comments? I am getting WA on 1st test case even.. but clearing all cases mentioned here! |
||||||||||||||
2014-07-17 05:31:54 kelaseek
while(scanf("%d",&n)!=-1) { } is working @spartacus |
||||||||||||||
2014-07-16 20:19:27 albus
For people who are new to Dynamic Programming please visit http://www.geeksforgeeks.org/dynamic-programming-set-8-matrix-chain-multiplication/. This link will help you derive solution to this problem |