Question
Once upon a time, there was a kingdom where math was always a big problem. When the post of the royal treasurer needed to be
Once upon a time, there was a kingdom where math was always a big problem. When the post of the royal treasurer needed to be filled, applicants were presented with the following problem: We have two arrays of integers, A and B. A and B, each contains exactly N elements. You should compute the value of S as follows: S = A0*B0 + + AN-1*BN-1 Write a C++ program to fill the two arrays with random integers, then the program will rearrange the numbers in A in such a way that the value of S is as small as possible. You are not allowed to rearrange the numbers in B. The program should output the values stored in both arrays and the computed value of S. Constraints - A will contain between 1 and 50 elements, inclusive. - A and B will contain the same number of elements. - Each element of A will be between 0 and 100, inclusive. - Each element of B will be between 0 and 100, inclusive.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started