[UVA] 442 - Matrix Chain Multiplication
Matrix Chain Multiplication
Suppose you have to evaluate an expression like A*B*C*D*E where A,B,C,D and E are matrices.
Since matrix multiplication is associative, the order in which multiplications are performed is
arbitrary. However, the number of elementary mu...