[Solved] CH231A assignment11- Longest ordered subarray

30 $

File Name: CH231A_assignment11-_Longest_ordered_subarray.zip
File Size: 423.9 KB

SKU: [Solved] CH231A assignment11- Longest ordered subarray Category: Tag:

Or Upload Your Assignment Here:


Consider the array A = (a1,a2,…,an). We call a subarray a succession of numbers in A where the position of any value in the subarray in the array is always bigger than the value of the previous one. Use dynamic programming to find a subarray of maximal ordered length of the array A. You can assume there are no duplicate values in the array. Your algorithm should find one optimal solution if multiple exist.

Example

For A = (8,3,6,50,10,8,100,30,60,40,80) the solution is: (3,6,10,30,60,80)

Your program should take an input and generate an output as follows: Sample input

8 3 6 50 10 8 100 30 60 40 80

Sample output

3 6 10 30 60 80

You can assume that the type of the input will be valid.

Your solution will be graded using multiple testcases, therefore following the input and output format is mandatory.

Problem 11.2 Sum in triangles

Consider a triangle formed from n lines (1 < n ≤ 100), each line containing natural numbers in the interval [0,10000].

  • (5 points) Use dynamic programming to determine the biggest sum of numbers existent on the path from the number in the first line and a number from the last line and print the respective path to the output. Each number in this path is seated to the left or to the right of the other value above it.
  • (2 point) Analyze the runtime of your solution and compare it to the brute force approach.
  • (1 point) Explain why a greedy algorithm does not work for this problem.

Example

The values are displayed for example in this manner:

7

3 8

8 1 0

2 7 4 4

4 5 2 6 5

For this example the resulting sum is 30.

Your program should take an input and generate an output as follows:

Sample input

7

3 8

8 1 0

2 7 4 4 4 5 2 6 5

Sample output

30

7 3 8 7 5

You can assume that the input will be valid.

Your solution will be graded using multiple testcases, therefore following the input and output format is mandatory.

Bonus Problem 11.3 Scuba Diver

A scuba diver uses a special equipment for diving. He has a cylinder with two containers: one with oxygen and the other with nitrogen. Depending on the time he wants to stay under water and the depth of diving the scuba diver needs various amount of oxygen and nitrogen. The scuba diver has at his disposal a certain number of cylinders. Each cylinder can be described by its weight and the volume of gas it contains. In order to complete his task the scuba diver needs specific amounts of oxygen and nitrogen. Theoretically, the diver can take as many cylinders as he wants/needs. Use dynamic programming to find the minimal total weight of cylinders he has to take to complete the task and which those cylinders are. In case of several acceptable solutions, printing just one of them is enough.

Example

The scuba diver has at his disposal 5 cylinders described below. Each description consists of: volume of oxygen, volume of nitrogen (both values are given in liters) and weight of the cylinder (given in decagrams):

3 36 120

10 25 129

5 50 250

1 45 130

4 20 119

If the scuba diver needs 5 liters of oxygen and 60 liters of nitrogen then he has to take two cylinders of total weight 249 (for example the first and the second ones or the fourth and the fifth ones).

Input

The number of test cases c is in the first line of input, then c test cases follow separated by an empty line. In the first line of a test case there are two integers t, a separated by a single space, 1 ≤ t ≤ 21 and 1 ≤ a ≤ 79. They denote volumes of oxygen and nitrogen respectively, needed to complete the task. The second line contains one integer n, 1 ≤ n ≤ 1000, which is the number of accessible cylinders. The following n lines contain descriptions of cylinders; ith line contains three integers ti, ai, wi separated by single spaces, (1 ≤ ti ≤ 21, 1 ≤ ai ≤ 79, 1 ≤ wi ≤ 800). These are respectively: volume of oxygen and nitrogen in the ith cylinder and the weight of this cylinder.

Output

On the first line will be printed the total weight wt and on the next line separated by spaces the index of the cylinders in order.

Sample input

1

5 60

5

3 36 120

10 25 129

5 50 250

1 45 130

4 20 119

Sample output

249

1 2

You can assume that the input values will fall in the ranges from before and you do not have to validate the input or repeat entering values.

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[Solved] CH231A assignment11- Longest ordered subarray
30 $