NAME:

CSE 331

Algorithms and Complexity

Sample Final Exam:  Spring 2020

A. Erdem Sariyuce May 4, 2020

DIRECTIONS:

Closed Book, Closed Notes except for two 8 1×11”

review sheet.

Time Limit: 2 hours 30 minutes.

• Answer the problems on the exam paper.

• Each problem starts on a new page.

• Make sure you write your NAME on the paper.

• If you need extra space use the back of a page.

• Problem 6 is a bonus problem.

• Keep your desk clear of everything else other than the exam paper, review sheets and writing imple- ments.

FEW  GENTLE REMINDERS/SUGGESTIONS:

• You can quote any result that we covered in class or any problem that was there in a homework (but remember to explicitly state where you are quoting a result from).

• If the question does not specifically ask for a formal proof, just a correct proof idea should fetch you at least 80% of the  points.

• If you get stuck on some problem for a long time, move on to the next one.

• The ordering of the problems is somewhat related to their relative difficulty. However, the order might be different for you!

• You should be better off by first reading all questions and answering them in the order of what you think is the easiest to the hardest problem. Keep the points distribution in mind when deciding how much time to spend on each problem.

• Spend time on the bonus problem only if you are done with the rest of the exam.

• Finally, relax and enjoy the exam!  (If not, think of a time when you’ll be done with 331!)

1.

(5 2 = 10 points) Answer True or False to the following questions. No justification is required. (Recall that a statement is true only if it is logically true in all cases while it is false if it is not true in some case).

(a) BFS is a linear time algorithm.

True False (Please CIRCLE your answer)

(b) Every undirected connected graph on n vertices has exactly n − 1 edges.

True False (Please CIRCLE your answer)

(c) If all the edge weights of an undirected connected graph G are distinct, then G

has a unique minimum spanning tree.

True False (Please CIRCLE your answer)

(d) Given n numbers a1, . . . , an, the median of the smallest ten numbers and the largest ten numbers among them can be computed in O(n) time.

True False (Please CIRCLE your answer)

(e) The maximum spanning tree problem (i.e. given a connected undirected weighted graph output a spanning tree with the maximum weight) is an NP-complete problem. (Recall that we have shown that the minimum spanning tree problem is in P.)

True False (Please CIRCLE your answer)

1.

(5 6 = 30 points) Each of the questions below has two parts. For the first part, you need to give a justification for the statement and is worth 2 points. For the second part, answer True or False and briefly JUSTIFY your answer. A correct answer with no or totally incorrect justification will get you 1 out of the total 4 points. An incorrect answer irrespective of the justification will get you 0 out of 4 points. You can assume part 1 when answering part 2 but to get credit for part 1, you have to answer part 1. (Recall that a statement is true only if it is logically true in all cases while it is is false if it is not true in some case).

(a) (Part 1) Argue why the following statement is TRUE.

If f (n) = c · g(n), then 2f (n)  = (2g(n))c for every real number c.

(Part 2) Is the following statement true or false? Remember to briefly JUSTIFY your answer.

2O(n) is O(2n). (Or more precisely, every function f (n) that is 2O(n) is also O(2n).)

True False (Please CIRCLE your answer)

(b) (Part 1) Argue why the following statement is TRUE.

Given n positive integers a1, . . . , an such that each ai nO(1); they can sorted in

O(n log n) time.

(Part 2) Is the following statement true or false? Remember to briefly JUSTIFY your answer.

Given n numbers a1, . . . , an, where for every 1 i n, ai 5, 9, 100 ; their sorted order can be output in O(n) time.

(See next page)

True      False     (Please CIRCLE your answer)

(c) (Part 1) Argue why the following statement is TRUE.

Given two numbers with n bits, they can be multiplied in O(n3/2) time.

(Part 2) Is the following statement true or false? Remember to briefly JUSTIFY your answer.

Given two numbers with n octal digits (i.e. the numbers are in base 8), they cannot be multiplied in time asymptotically faster than O(n2).

True      False     (Please CIRCLE your answer)

(d) (Part 1) Argue why the following statement is TRUE.

Given an undirected graph with n nodes and m edges with positive integer weights (that are polynomially in n large) and two distinct vertices s ̸= t, the shortest s − t path can be computed in O((m + n) log n) time.

(Part 2) Is the following statement true or false? Remember to briefly JUSTIFY your answer.

Given an undirected unweighted graph G in n vertices and m edges and two distinct vertices s ̸= t, the shortest s − t path can be computed in O(m + n) time.

True False (Please CIRCLE your answer)

(a) (Part 1) Argue why the following statement is TRUE.

Let G be a connected graph where each edge was weight 1. Then any BFS tree is an MST for G.

(Part 2) Is the following statement true or false? Remember to briefly JUSTIFY your answer.

Let G be an undirected connected graph. If G has a unique minimum spanning tree, then all the edge weights in G are distinct.

True False (Please CIRCLE your answer)

1.

(25 points) You’re  given the Internet as a graph G = (V, E) such that  V  = n and  E = m. (Assume G is connected.) Further for each edge e E, you’re given it’s probability 0   pe   1 that it’ll transmit a packet (or equivalently, it is the probability it will not fail). Further, the probabilities are independent, i.e. given a path with edges

e1, . . . , eℓ, the probability of that the entire path does not fail is given by ∏ℓ pe .

Design an O(m log n) time algorithm, which given two distinct vertices s = t V , outputs the s t path with the largest probability of not failing. (If you were deciding to route packets from s to t, you should use this path.)

For simplicity, you can assume that each pe is a power of 1 . For example, in the graph

below,

The path s, u, t has a probability of not failing of 1 × 1  = 1 , while the path s, w, t has

a probability of not failing of 1  × 1  = 1 . Thus, your algorithm should output s, w, t.

Argue the correctness of your algorithm (formal proof is not required). Also briefly justify the run time of the algorithm.

(Hint: It might be useful to transform the input and then apply a known algorithm on the transformed input. Further, these identities might be useful: log(ab) = log a + log b and log(a/b) = log a log b. (These identities hold irrespective of the base in the logarithms and hence are not explicitly stated.))

1. (20 points) (This is an CS job interview question.) Given two arrays A and B each with n numbers a1, . . . , an and b1, . . . , bn respectively, the algorithm needs to output the order a1, b1, a2, b2, . . . , an, bn. E.g. if n = 4 and A = (1, 3, 5, 7) and B = (2, 4, 6, 8), then the output is (1, 2, 3, 4)(5, 6, 7, 8). The output must be in the same array as the input. You can think of the input as an array of size 2n which contains A and B and your algorithm must rearrange these values as specified.

What makes the problem interesting that you are only allowed O(log n) amount of temporary space. By temporary space, I mean the total amount of space among all data structures and temporary variables except the arrays A and B. In particular, the output has to be written in A and B.

Give an O(n log n)-time algorithm that uses O(log n) temporary space. To receive full credit, you must fully specify your algorithm. Argue why your algorithm is correct and justify the running time and temporary space usage of your algorithm.

(Note: If you present an O(n2) time algorithm with O(log n) temporary space or a O(n log n) time and n + O(1)-temporary space algorithm then you can get at most 5 points.)

(Hint:  It might be useful to think of a divide and conquer algorithm.)

2.

(15 points) Recall that the Bellman-Ford algorithm for input graph G = (V, E) with costs ce in each edge e ∈ E builds an n×n matrix M such that M [i, u] for 0 ≤ i ≤ n−1 and u ∈ V contains OP T (i, v), i.e. the cost of a shortest u − t path using at most i edges (for a given target t ∈ V ). In particular, it computes

M [i, u] = min   M [i 1, u],   min M [i 1, w] + c(u,w) .

u,w)∈E

In  class  we  discussed  a  way  to  compress  the  matrix  above:  if  M [i, u] = M [i     1, u], then we do not need to explicitly store M [i, u]. In this problem, you will show that even with this compression idea a naive implementation of the Bellman-Ford algorithm still needs to store Ω(n2) entries. (Recall that in class we later saw that the algorithm only needs to store two columns at a time– what this problem is saying that the idea of compression alone will not give you any benefit over the naive algorithm.)

In particular, define an entry (i, u) to be fresh, if M [i, u] < M [i 1, u].  For every large enough n 1 show that there exists a problem instance to the shortest path problem (with possibly negative weights but not negative cycle) on n vertices such that Ω(n2) entries in the matrix M as computed by the Bellman-Ford algorithm are fresh. (Note: If you present an example for any fixed n ≥ 4 such that the matrix has M has

at least n(n − 1)/2 fresh entries, then you can get up to 3 points.)

3. (Bonus) (2 points) Given an O(n) time, O(log n) temporary space algorithm to solve the problem from Q4.

(Hint: You’ll need to formally prove the correctness of your algorithm. Also no partial credit on this one.)

(Fun Question) Write a limerick or a joke that is relevant to the course. Should you accept this task, also let me know if you are OK with me posting your entry on the course piazza (assuming of course I like it!) If I post your entry, I’ll put in your name too (if you prefer to remain anonymous on piazza, let me know).