Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

3. (5 pts.) Pancake aesthetics. A diner serves a breakfast plate which simply consists of n pancakes. A very bad cook fills the order. He

image text in transcribed

3. (5 pts.) Pancake aesthetics. A diner serves a breakfast plate which simply consists of n pancakes. A very bad cook fills the order. He proceeds by making n pancakes-all of different sizes and all with one side burnt. He then piles the pancakes onto a plate to create a tower of pancakes. Mr. Waiter picks up the plate and immediately realizes that he has to make the plate presentable. He wants to (i) sort the pancakes from smallest to largest with the largest pancake at the bottom of the plate, and (ii) hide the burnt side of each pancake. Now he only has one move available to him - push a spatula underneath one of the pancakes and then flip the entire subtower of pancakes above the spatula upside down. His goal is to use this move repeatedly until his goals are accomplished. How many moves does he need? Let's create a mathematical model for this problem. Represent the ith smallest pancake as i if the pancake has its good side facing up and as i if its burnt side is facing up. Let the array P[1,...n] store the pancakes on the plate created by the bad cook. In particular, P[j] refers to the th pancake from the top. Thus, for n = 5 the input array can look like this: P=1-3,2,4,-1,-5). Let flip(i), 1 sis n, be the operation where the entries of P[1... i) is modified as [-P[i], P[i 1),..., P[1]]. For example, if we apply flip(3) to the above example, the results is (-4, -2,3,-1, -5]. Our goal is to transform the input Pinto the array [1, 2,..., n] using flip operations only. = (-3, 2, 4,-1,-5) into a. (1 pt.) Describe a sequence of flips that tranforms P [1, 2, 3, 4, 5). b. (2 pts.) Design an algorithm (i.e., write a pseudocode) that transforms an input P of n pancakes arbitrarily arranged into [1,2,..., n] using flip operations only. c. (1 pt.) Write a pseudocode that implements flip(i). d. (1 pt.) How much time does it take to implement flip(i)? In the worst case, how many flips will your algorithm perform? Based on your answers to these two questions, what is the running time of your algorithm? All your answers should be in terms of the Big-Oh notation. 3. (5 pts.) Pancake aesthetics. A diner serves a breakfast plate which simply consists of n pancakes. A very bad cook fills the order. He proceeds by making n pancakes-all of different sizes and all with one side burnt. He then piles the pancakes onto a plate to create a tower of pancakes. Mr. Waiter picks up the plate and immediately realizes that he has to make the plate presentable. He wants to (i) sort the pancakes from smallest to largest with the largest pancake at the bottom of the plate, and (ii) hide the burnt side of each pancake. Now he only has one move available to him - push a spatula underneath one of the pancakes and then flip the entire subtower of pancakes above the spatula upside down. His goal is to use this move repeatedly until his goals are accomplished. How many moves does he need? Let's create a mathematical model for this problem. Represent the ith smallest pancake as i if the pancake has its good side facing up and as i if its burnt side is facing up. Let the array P[1,...n] store the pancakes on the plate created by the bad cook. In particular, P[j] refers to the th pancake from the top. Thus, for n = 5 the input array can look like this: P=1-3,2,4,-1,-5). Let flip(i), 1 sis n, be the operation where the entries of P[1... i) is modified as [-P[i], P[i 1),..., P[1]]. For example, if we apply flip(3) to the above example, the results is (-4, -2,3,-1, -5]. Our goal is to transform the input Pinto the array [1, 2,..., n] using flip operations only. = (-3, 2, 4,-1,-5) into a. (1 pt.) Describe a sequence of flips that tranforms P [1, 2, 3, 4, 5). b. (2 pts.) Design an algorithm (i.e., write a pseudocode) that transforms an input P of n pancakes arbitrarily arranged into [1,2,..., n] using flip operations only. c. (1 pt.) Write a pseudocode that implements flip(i). d. (1 pt.) How much time does it take to implement flip(i)? In the worst case, how many flips will your algorithm perform? Based on your answers to these two questions, what is the running time of your algorithm? All your answers should be in terms of the Big-Oh notation

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database And Expert Systems Applications 24th International Conference Dexa 2013 Prague Czech Republic August 2013 Proceedings Part 1 Lncs 8055

Authors: Hendrik Decker ,Lenka Lhotska ,Sebastian Link ,Josef Basl ,A Min Tjoa

2013 Edition

3642402844, 978-3642402845

More Books

Students also viewed these Databases questions

Question

=+designing international assignment C&B packages.

Answered: 1 week ago