#Lutece0245. Matrix Multiplication
Matrix Multiplication
Migrated from Lutece 245 Matrix Multiplication
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
When calculating ( and are matrix),we do times of standard multiplication.
When calculating $A_1 \times A_2 \times \cdots \times A_N( A_i(1 \leq i \leq N)$ is matrix with size ,if we calculate it from left to right we will have to do $a1\cdot a2\cdot a3+a1\cdot a3\cdot a4+...+a1\cdot a_N\cdot a_{N+1}$ times of multiplications.But as is known ,matrix multiplication is associative. So we can do less multiplications if we select a proper order to calculate it.
What bothers us is the minimum times of multiplications necessary to calculate
Input
In the first line is an integer
Followed by cases. In each case there're lines:
An integer is given in the first line
The next line contains integers which define the size of matrices as described above.
Output
For each case output one integer on a single line standing for the minimum times of multiplicaions needed.
Samples
1
3
2 3 4 1
18
Note
In the Sample Input there're matrices with size and .
if we calculate from left to right as $(A_1 \times A_2) \times A_3 , 2 \times 3 \times 4+2 \times 4 \times 1=32$ times of multiplication is needed.
if we calculate it in following way: , only times of multiplications are needed ,and this is the optimal choice.
Resources
StephYDX