For arr[ ] = { 10, 20, 30, 40}, matrix A1 = [10 * 20], A2 = [20 * 30], A3 = [30 * 40]
Scalar multiplication of matrix with dimension 10 * 20 is equal to 200.
The first line of input contains an integer ‘T’, denoting the number of test cases. Then each test case follows.
The first line of each test case contains the Integer ‘N’ denoting the number of elements in the array.
The second and the last line of each test case contains ‘N’ single space-separated integers representing the elements of the array.
For each test case, print a single integer, denoting the minimum cost of matrix multiplication.
Output of each test case will be printed on a separate line.
You do not need to print anything, it has already been taken care of. Just implement the given function.
1 <= T <= 5
2 <= N <= 100
1 <= arr[i] <= 400
Time Limit: 1 sec.
The idea is to try out all possible combinations of parentheses from left to right and avoid the computation of repetitive subproblems with memoization.
Minimum number of multiplication needed to multiply a chain of size n = Minimum of all ‘n ‘-1 placements (these placements create subproblems of smaller size)
Therefore, the problem has optimal substructure property and can be easily solved using recursion.
Also, there is a lot of repetition in subproblems hence do memoization.
Take ‘dp[102][102]’ a global 2D matrix, for memoization.
Let matrixMultiplication(arr, N) be the function, returns the minimum cost of matrix multiplication.
It takes three parameters (arr, i, j) and returns the minimum cost of matrix multiplication of matrices that end ‘i’ to ‘j’ index in the array.
The idea is to solve the smaller problem first.
Take 2D matrix dp[N][N]
dp[i][j] = Minimum number of scalar multiplications needed to compute the matrix A[i]A[i + 1]...A[j] = A[i..j] where dimension of A[i] is arr[i - 1] x arr[i]
The cost of matrix multiplication of a single matrix is 0.
Then, solve for length 2 to N - 1. ( there are N - 1 matrix in N length array) using the following transition.
Dp[i][j] = min( dp[i][k] + dp[k + 1][j] + arr[i - 1] * arr[k] * arr[j]) where i <= k < j.
The answer is stored in dp[1][N - 1]
Randomly Sorted
Search In A Sorted 2D Matrix
Spiral Matrix
Spiral Matrix
Spiral Matrix
Find the maximum element of each row
Growing String