CS29003 ASSIGNMENT 5- Dynamic Programming Solved

25.00 $

Description

5/5 - (1 vote)

 

Important Instructions
1. List of Input Files: input.txt
2. Output Files to be submitted: ROLLNO GroupNO A5.c/.cpp
3. Files must be read using file handling APIs of C/C++. Reading through input redirection isn’t allowed.
4. You are to stick to the file input output formats strictly as per the instructions.
5. Submission through .zip files are not allowed.
6. Write your name and roll number at the beginning of your program.
7. Do not use any global variable unless you are explicitly instructed so.
8. Use proper indentation in your code.
10. There will be part marking.
Problem Statement
Recently you have joined a chemistry lab and they are leading a research on a system which consists of a sequence of independent and essential chemical reactions. Surprisingly the researchers of the lab have discovered a unique catalyst and it can be included in any of the reactions of the system. The use of the catalyst enhances the rate of the reaction and hence its probability of success also. Also they have proven that the probability of success of the reactions depends on the usage of the catalyst, typically expressed in terms of number of units involved in the reaction. The more the quantity (units) of catalyst is used in a reaction, the probability of success increases or remains the same, but never decreases. The probability of success of the entire system is the product of the probability of success of each of the individual reactions. Given the limited quantity (units) of the catalyst, the researchers want to gain the maximum success of the system. As an expert in algorithms, you are given the task of maximizing the success probability of the system with the constrained amount of the catalyst. You have to formulate a Dynamic Programming solution for the problem (use of memoization is NOT allowed).
You are required to design an efficient dynamic programming algorithm for the problem.
Part I
Write as comments at the very beginning in your program, the following clearly
1. The definition of the subproblem that you choose.
2. The recursive formulation used in the DP solution, including the base case. Write using notations as you have seen in text, do not write long sentences.
1
Part II
Write a main() function to implement the dynamic programming. Read the input file as follows
1. The first line contains the number of reactions N (assume N < 10)
2. Read in C (assume C < 30. You can also assume C will be entered as ≥ N, no need to check).
3. Read in the e(k,p) values for each reaction exactly in this order in a 2-d array (enter the values in each row in non-decreasing order): e(1,1),e(1,2),….,e(1,C) e(2,1),e(2,2),….,e(2,C)
….
e(N,1),e(N,2),….,e(N,C)
Sample input file
File: input.txt
3
5
0.1 0.3 0.5 0.6 0.6
0.1 0.2 0.4 0.6 0.8
0.2 0.4 0.4 0.7 0.9

You have to print the followings exactly same as shown in the sample output file
1. The maximum probability of success, of the system.
2. The assignment of the catalyst in units to each of the reaction that gives the maximum success probability of the system.
Sample output file
File: output.txt
0.012
reaction 1 : 2 reaction 2 : 2
reaction 3 : 1

Notes
2. You have to code directly in main(), no separate function is allowed to use.
3. You are not allowed to use Memoization
4. Make sure to read inputs from a file named “input.txt”. At the time of evaluation, the input data might be different from the one given here.
5. You need not to submit “output.txt”, but your code should write the output in the given format in a file named “output.txt”
2

  • asgn-5-fkwjt7.zip