CS577 Homework3 Solved

30.00 $

Category:

Description

5/5 - (1 vote)

  1.  Suppose you are given a string of letters representing text in some foreign language, but without any spaces or punctuation. You want to break this string into its individual constituent words. For example, you might be given the following passage from Cicero’s famous oration in defense of Lucius Licinius Mureta in 62bce, in the scriptia continua of classical Latin:

PRIMVSDIGNITASINTAMTENVISCIENTIANONPOTEST

ESSERESENIMSVNTPARVAEPROPEINSINGVLISLITTERIS

ATQVEINTERPVNCTIONIBUSVERBORVMOCCVPATAE[1]

A fluent Latin reader would parse this string (in modern orthography) as Primus dignitas in tam tenui scientia non potest esse; res enim sunt parvae, prope in singulis litteris atque interpunctionibus verborum occupatae.

Some strings can be parsed in multiple ways, but you are not concerned with that. You want to know, given a string S of n characters, can it be segmented into words at all? Assume you have access to a subroutine IsWord(i,j) that takes indices i,j with i j as input and indicates whether S[i,…,j] is a “word” in the foreign language, and that it takes constant time to run.

Design an algorithm that solves this problem in O(n2) time.

  1. Recall that a subsequence of an array is obtained by deleting any number of positions (possibly none, possibly all). A subarray is a sequence in which the positions that are not deleted form an interval (possibly empty). For example, consider the array [−1,−2,−3,−4,−5]. A valid subsequence is [−1,−3,−5]; it is not a subarray. A valid subarray is [−2,−3].

You are given an array A[1,…,n] of integers and want to find the maximum sum of the elements of (a) any subsequence, and (b) any subarray. The sum of an empty subarray is 0. For the example above, the maximum-sum subarray and subsequence has length zero.

Design an O(n) algorithm for both problems.

Regular problems

  1. You want to go running and have n minutes to spare. You want to run as long a distance as possible, but your exhaustion level cannot exceed a given limit e. Initially your exhaustion level is zero. During each minute, you can choose to either run or rest for the whole minute. When you choose to run the i-th minute, you run exactly d[i] feet during that minute, and your exhaustion level increases by one. When you choose to rest, you run zero feet during that minute, and your exhaustion level decreases by one (if your exhaustion level is already zero, it will stay zero). Moreover, when you choose to rest, you must continue to rest until your exhaustion level reaches zero; once it reaches zero, you can again choose to run or rest. Finally, your exhaustion level at the end of your run must be zero.

For example, for e = 2 and d[1,…,5] = (500,300,400,200,1000), the best you can do is to run during minutes 1 and 3, and rest the other minutes, so the answer is 500 + 400 = 900.

Develop an algorithm that takes a positive integer e and an array d[1,…,n] of n ≥ 1 positive integers as input, and ouputs the maximum distance you can run subject to the constraints above. Your algorithm should run in time O(ne) and space O(e).

  1. When you were little, every day on your way home from school you passed the house of your grandmother. If you stop by for a chat on day i, Grandma would give you a number `i of lollipops but also tell you that she won’t give you any more lollipops for the next ki For example, if day 1 is a Monday and k1 = 3, then if you visit her that day, you would have to wait patiently until Friday to get your next lollipop.

Design an O(n) algorithm that takes as input the numbers (`i,ki) for i ∈{1,2,…,n}, and outputs the maximum number of lollipops you can get during those n days.

  1. The library has n books that must be stored in alphabetical order on adjustable-height shelves. Each book has a height, and a thickness. The width of the shelf is fixed at w, and the sum of the thicknesses of books on a single shelf cannot exceed w. The next shelf will be placed atop the tallest book on the shelf. You can assume the shelving takes no vertical space.

Design an algorithm that minimizes the total height of shelves used to store all the books. You are given the list of books in alphabetical order. Your algorithm should run in time O(n2).

Challenge problem

  1. There is a famous joke-riddle for children:

Three turtles are crawling along a road. One turtle says, “There are two turtles ahead of me.” Another turtle says, “There are two turtles behind me.” The third turtle says, “There are two turtles ahead of me and two turtles behind me.” How could this have happened? Of course, the third turtle is lying!

In this problem you have n turtles crawling along a road. Some of them are crawling sideby-side, so there may be turtles that are neither ahead nor behind one another. Each turtle makes a statement of the form: “There are ai turtles ahead of me, and bi turtles behind me.”

Your task is to find the minimal number of turtles that must be lying. More formally, let xi denote the position along the road of turtle i, 1 ≤ i n. Some turtles may be at the same position. Turtle i tells the truth if and only if ai is the number of turtles j such that xj > xi and bi is the number of turtles j such that xj < xi. Otherwise, turtle i is lying.

Design an O(nlogn) algorithm for this problem.

Programming problem

  1. SPOJ problem Coins Game (problem code MCOINS).

[1] “First of all, dignity in such paltry knowledge is impossible; this is trivial stuff, mostly concerned with individual letters and the placement of points between words.”

  • HW03-maasrb.zip