Sale!

Assignment 5 CS329e – Elements of Software Design Working Hard Problem

$30.00 $18.00

Category: You will Instantly receive a download link for .zip solution file upon Payment || To Order Original Work Click Custom Order?

Description

5/5 - (3 votes)

Description Chris has to complete a programming assignment overnight. He has to write n lines of code before morning. He is dead tired and he tries drinking some black coffee to keep him awake. But each time he drinks a cup of coffee he stays awake for a short amount of time but his productivity goes down by a constant factor k This is how he plans to write the program. He will write the first v lines of code, then drink his first cup of coffee. • Since his productivity has gone down by a factor of k he will write v // k lines of code. • He will have another cup of coffee and then write v // k**2 lines of code. • He will have another cup of coffee and write v // k**3 lines of code and so on. • He will collapse and fall asleep when v // k ** p becomes 0. Now Chris does want to complete his assignment and maximize on his sleep. So he wants to figure out the minimum allowable value of v for a given productivity factor that will allow him to write at least n lines of code before he falls asleep. Input: You will read your input from standard input as given in the following format file work.in: 1 2 2 300 2 3 59 9 The first line is T the number of test cases. This will be followed by T lines of input. Each line of input will have two numbers n and k. n is the number of lines of code to write and k is the productivity factor, where 1 ≤ n ≤ 106 and 2 ≤ k ≤ 10. Output: For each test case write your result to standard out as shown in file work.out. In your output there will be v lines of code the Chris has to write, as well as the time it took for each function. For the above two test cases, the output will be: 1 1 Bi n a r y S e a r c h : 152 2 Time : 9. 5 1 2 9 0 1 3 0 6 1 5 2 3 4 4 e−05 3 4 L i n e a r S e a r c h : 152 5 Time : 0. 0 0 0 5 9 1 0 3 9 6 5 7 5 9 2 7 7 3 4 6 7 8 Bi n a r y S e a r c h : 54 9 Time : 4. 6 9 6 8 4 6 0 0 8 3 0 0 7 8 1 e−05 10 11 L i n e a r S e a r c h : 54 12 Time : 9. 0 1 2 2 2 2 2 9 0 0 3 9 0 6 2 e−05 13 Do not worry if your times do not match ours exactly. They are given just for comparison purposes. For this assignment, main has been written completely for you, and nothing needs to be changed in it. You will be solving this problem in 2 ways. First, you will write a function that uses a linear search to solve the problem. Then you will write a function that uses a modified binary search algorithm to solve it again. Both functions will return the same answer, but the binary search method will usually be faster. It is recommended that you write a helper function, which given a value v representing the number of lines Chris writes before his first cup of coffee and a value k, the productivity factor, will calculate the number of lines Chris will write before falling asleep. This can be called in both the linear and binary functions to make the computations easier. For this assignment you may work with a partner. Both of you must read the paper on Pair Programming1 and abide by the ground rules as stated in that paper. If you are working with a partner then only one of you will be submitting the code. But make sure that your partner’s name and UT EID is in the header. If you are working alone then remove the partner’s name and eid from the header. 1.1 Turnin Turn in your assignment on time on Gradescope system on Canvas. For the due date of the assignments, please see the Gradescope and Canvas systems. 1.2 Academic Misconduct Regarding Programming In a programming class like our class, there is sometimes a very fine line between ”cheating” and acceptable and beneficial interaction between students (In different assignment groups). Thus, it is very important that you fully understand what is and what is not allowed in terms of collaboration with your classmates. We want to be 100% precise, so that there can be no confusion. The rule on collaboration and communication with your classmates is very simple: you cannot transmit or receive code from or to anyone in the class in any way – visually (by showing someone your code), electronically (by emailing, posting, or otherwise sending someone your code), verbally (by reading code to someone) or in any other way we have not yet imagined. Any other collaboration is acceptable. The rule on collaboration and communication with people who are not your classmates (or your TAs or instructor) is also very simple: it is not allowed in any way, period. This disallows (for example) posting any questions of any nature to programming forums such as StackOverflow. As far as going to the web and using Google, we will apply the ”two line rule”. Go to any web page you like and do any search that you like. But you cannot take more than two lines of code from an external resource and actually include it in your assignment in any form. Note that changing variable names or otherwise transforming or obfuscating 1Read this paper about Pair Programming https://collaboration.csc.ncsu.edu/laurie/Papers/ Kindergarten.PDF 2 code you found on the web does not render the ”two line rule” inapplicable. It is still a violation to obtain more than two lines of code from an external resource and turn it in, whatever you do to those two lines after you first obtain them. Furthermore, you should cite your sources. Add a comment to your code that includes the URL(s) that you consulted when constructing your solution. This turns out to be very helpful when you’re looking at something you wrote a while ago and you need to remind yourself what you were thinking. We will use the following Code plagiarism Detection Software to automatically detect plagiarism. • Staford MOSS https://theory.stanford.edu/˜aiken/moss/ • Jplag – Detecting Software Plagiarism https://github.com/jplag/jplag and https://jplag.ipd.kit.edu/ 3