Suppose you have a set of numbers and they are in ascending order such as (6,2,9,5,8,7). In this set we have six pairs that are out of this rule or sequence as following : (6,2),(6,5),(9,5),(9,8)..etc...


OU build


Suppose you have a set of numbers and they are in ascending<br>order such as (6,2,9,5,8,7). In this set we have six pairs that are<br>out of this rule or sequence as following :<br>(6,2),(6,5),(9,5),(9,8)..etc<br>1. You are requested to write an algorithm to display how<br>many numbers which they are out of order.<br>2. Build your algorithm by using OUBUILD<br>3. Provide two screenshots with different outputs.<br>

Extracted text: Suppose you have a set of numbers and they are in ascending order such as (6,2,9,5,8,7). In this set we have six pairs that are out of this rule or sequence as following : (6,2),(6,5),(9,5),(9,8)..etc 1. You are requested to write an algorithm to display how many numbers which they are out of order. 2. Build your algorithm by using OUBUILD 3. Provide two screenshots with different outputs.
A person is cutting a long board of wood into different length of<br>pieces . Each cutting has fixed width 2 cm lengths. Given that<br>each cutting with different length has a different price, Now, we<br>are required to help this person to find the optimal cuts in order<br>to increase his income. Consider following example showing<br>different cut's lengths and their equivalent prices.<br>Input: board length = 4<br>Length [ ] = [1, 2, 3, 4, 5, 6, 7, 8]<br>Price [ ]= [2, 6, 8, 10, 14, 17, 19, 20]<br>Output: Best cut is two pieces of length 2 each to gain<br>revenue of 6 + 6 = 12<br>[Explanation: the possible cuts and profit of each is as follows:<br>Cut<br>Profit<br>10<br>(2+8) = 10<br>(6+6) = 12<br>(8+2) = 10<br>(2+2+6) = 10<br>(2+6+2) = 10<br>(6+2+2) = 10<br>(2+2+2+2) = 8<br>4<br>1,3<br>2,2<br>3,1<br>1,1,2<br>1,2,1<br>2,1,1<br>1,1,1,1<br>As noted the best cut is two pieces of length 2 each to gain<br>revenue of 6 + 6 = 12<br>To answer question 1, you need to do the following:<br>1. Write an algorithm to find the optimal cuts in order to<br>increase the person income's<br>2. Implement the algorithm using OUBuild script following<br>the above steps.<br>3. Provide 2 screenshots for different output.<br>

Extracted text: A person is cutting a long board of wood into different length of pieces . Each cutting has fixed width 2 cm lengths. Given that each cutting with different length has a different price, Now, we are required to help this person to find the optimal cuts in order to increase his income. Consider following example showing different cut's lengths and their equivalent prices. Input: board length = 4 Length [ ] = [1, 2, 3, 4, 5, 6, 7, 8] Price [ ]= [2, 6, 8, 10, 14, 17, 19, 20] Output: Best cut is two pieces of length 2 each to gain revenue of 6 + 6 = 12 [Explanation: the possible cuts and profit of each is as follows: Cut Profit 10 (2+8) = 10 (6+6) = 12 (8+2) = 10 (2+2+6) = 10 (2+6+2) = 10 (6+2+2) = 10 (2+2+2+2) = 8 4 1,3 2,2 3,1 1,1,2 1,2,1 2,1,1 1,1,1,1 As noted the best cut is two pieces of length 2 each to gain revenue of 6 + 6 = 12 To answer question 1, you need to do the following: 1. Write an algorithm to find the optimal cuts in order to increase the person income's 2. Implement the algorithm using OUBuild script following the above steps. 3. Provide 2 screenshots for different output.
Jun 10, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here