Minimize the sum of product of two arrays with permutations allowed
Answers
Answered by
0
Given two arrays, A and B, of equal size n, the task is to find the minimum value of A[0] * B[0] + A[1] * B[1] +…+ A[n-1] * B[n-1].
Similar questions