Homework 1 Solution

$29.99 $18.99

Homework Guidelines Please make sure you read the collaboration policy, and write the following as the rst line of your homework: \I have read and agree to the collaboration policy. hYour namei.” Your homework will not be graded if you do not write this. Collaboration policy Collaboration on homework problems is permitted, but not encouraged.…

You’ll get a: . zip file solution

 

 
Categorys:
Tags:

Description

Rate this product

Homework Guidelines

Please make sure you read the collaboration policy, and write the following as the rst line of your homework: \I have read and agree to the collaboration policy. hYour namei.” Your homework will not be graded if you do not write this.

Collaboration policy Collaboration on homework problems is permitted, but not encouraged. You are allowed to collaborate with at most two students enrolled in the class. You must mention the name of your collaborators clearly on the rst page of your submission. Even if you collaborate, you are expected to write and submit your own solution independent of others, and your collaboration should be restricted to discussions only. Also, you should be able to explain your solution verbally to the course sta if required to do so. Collaborating with any one not enrolled in the class, or taking help from any online resources for the homework problems is strictly forbidden.

The Computer Science Department of UCSC has a zero tolerance policy for any incident of aca-demic dishonesty. If cheating occurs, consequences within the context of the course may range from getting zero on a particular assignment, to failing the course. In addition, every case of academic dishonesty will be referred to the student’s college Provost, who sets in motion an o cial disciplinary process. Cheating in any part of the course may lead to failing the course and suspension or dismissal from the university.

How to submit your solutions Each problem must be typed up separately (in at least an 11-point font) and submitted in the appropriate assignment box on the Canvas website as a PDF le.

This means that you will submit 4 separate les on Canvas, one for each problem!

You are strongly encouraged, but not required, to format your problem solutions in LATEX. Tem-plate HW les and other LATEXresources are posted on the course webpage. LATEXis a free, open-source scienti c document preparation system. Most technical publications in CS are prepared using this tool.

You might want to acquire a LATEX manual or nd a good online source for LATEX documentation.

The top of each problem should include the following:

your name,

the acknowledgement to the collaboration policy,

Your choice of homework heavy versus homework light grading,

the names of all people you worked with on the problem (see the handout “Collaboration and Honesty Policy”), indicating for each person whether you gave help, received help or worked something out together, or “Collaborators: none” if you solved the problem completely alone.

Solution guidelines For problems that require you to provide an algorithm, you must give the following:

  1. a precise description of the algorithm in English and, if helpful, pseudocode,

  1. a proof of correctness,

  1. an analysis of running time and space.

You may use algorithms from class as subroutines. You may also use any facts that we proved in class. You should be as clear and concise as possible in your write-up of solutions. Understandability of your answer is as desirable as correctness, because communication of technical material is an important skill. A simple, direct analysis is worth more points than a convoluted one, both because it is simpler and less prone to error and because it is easier to read and understand. Points might be subtracted for illegible handwriting and for solutions that are too long. Incorrect solutions will get from 0 to 30% of the grade, depending on how far they are from a working solution. Correct solutions with possibly

minor aws will get 70 to 100%, depending on the aws and clarity of the write up.

Assigned Problems

Exercises (Do not hand in) Chapter 1, Problems 1-3, 5. Chapter 2, Problems 3-5, 7.

Following are the problems to be handed in, 25 points each.

  1. (Resident Matching, 2-page limit { your solutions should t on two sides of 1 page).

The situation is the following. There were m teams at Google, each with a certain number of available positions for hiring interns. There were n students who want internships at Google this summer, each interested in joining one of the teams. Each team had a ranking of the students in order of preference, and each student had a ranking of the teams in order of preference. We will assume that there were more students who want an internship at Google than there were slots available in the m teams.

The interest, naturally, was in nding a way of assigning each student to at most one team at Google, in such a way that all available positions in all teams were lled. (Since we are assuming a surplus of potential interns, there would be some students who do not get assigned to any team.) We say that an assignment of students to Google teams is stable if neither of the following situations arises.

The rst type of instability that can occur is that there is a team t, and there are students s and s0, so that

{ s is matched with t, and

{ s0 is assigned to no team, and { t favors s0 over s.

The second type of instability that can occur is that there are teams t and t0 and students s and s0 so that

{ s is matched with t, and { s0 is matched with t0, and

{ t favors s0 over s, and { s0 favors t over t0.

So we basically have the Stable Matching Problem, except that, one, teams generally want more than one intern, and, two, there is a surplus of students who want internships at Google. Show that there is always a stable assignment of students to Google teams, and give an algorithm to nd one.

Please give a clear description of your algorithm. Don’t forget to prove its correctness and analyze its time and space complexity.

  1. (Time complexity, 2-page limit { your solutions should t on two sides of 1 page). Part (a) has 15 points and part (b) has 10 points. The top of your solution for part (a) should have the functions in order by their letter, with no spaces, commas, etc. between them. (For example, abc). If you do not include this you will automatically lose 75% of the credit. (Functions that are equivalent should be in alphabetical order)

    1. Rank the following functions by increasing order of growth, that is, nd an arrangement g1; ::: of the functions satisfying g1(n) = O(g2(n)); g2(n) = O(g3(n)); :::. Break the functions into equivalence classes so that f and g are in the same class if and only if f(n) = (g(n)). Note that log( ) is the base 2 logarithm, logb( ) is the base b logarithm, ln( ) is the natural logarithm, and logc(n) denotes (log(n))c (for example, log2(n) = log(n) log(n)).

UniformShuffle(A)

1 for i n downto 1

  • do j random integer such that 1 j i

  • exchange A[i] and A[j] 4 return A

Prove that the algorithm indeed generates a uniform random shu e of A. What is the running time of the algorithm, given that generating random integer takes time O(1)? Hint: Start by thinking of what a uniform shu e means in terms of probability.

    1. Point out the error in the following proof by induction.

Claim: Given any set of b buses, all buses lead to the same destination.

Proof: We proceed by induction on the number of buses, b.

Base case: If b = 1, then there is only one bus in the set, and so all buses in the set lead to the same destination.

Induction step: For k 1, we assume that the claim holds for b = k and prove that it is true for b = k + 1. Take any set B of b + 1 buses. To show that all buses lead to the same destination, we take the following approach. Remove one bus from this set to obtain the set B1 with just b buses. By the induction hypothesis, all the buses in B1 lead to the same destination. Now go back to the original set and remove a di erent bus to obtain a the set B2. By the same argument, all the buses in B2 lead to the same destination. Therefore all the buses in B = B1 [ B2 must lead to the same destination, and the proof is complete.

  1. (Divide and Conquer, 2-page limit { your solutions should t on two sides of 1 page).

After dating for several years, Jack and Anthony have nally decided to move in together. As part of this process, each of them wants to bring his n alphabetically sorted books over to the new place. Due to some weird reason, they want to nd out who owns the median book of the joint book collection, which has 2n books. In this joint book collection, the median would be the n-th book among the union of the 2n alphabetically sorted books.

Because their original book collections are already sorted, they manage to nd out who owns the median in (log n). They did not have to reorder the joint book collection, but rather it was enough for them to just query individual values from their original book collections. What algorithm did they use? Prove that this algorithm is correct. Find the recurrence relation and show that it resolves to (log n).

4