COMS20010 代写代考 算法 Algorithm – cscodehelp代写

COMS20010 — 2020–21 Exam
This exam was actually given as a Blackboard test in a slightly different format to the one used this year (hence “Section 1” and “Section 2”). This means this isn’t quite the final version, and since it hadn’t gone through the final round of checking at that point there might still be one or two errors lurking in the model answers, but it should be a good guide as to what to expect.
Section 1

  1. (5 marks) (Short question.) Mark each of the following statements true or false: (a) (1 mark) n2 ∈ O(5n).
    (b) (1 mark) 10n2 + n ∈ O(n2).
    (c) (1 mark) log n ∈ O(n1/5).
    (d) (1 mark) n65 ∈ O(n!). (e) (1 mark) 2n2 ∈ O(2n).
  2. (5 marks) (Short question.) Consider the following graph G and the indicated vertex w.
    w
    Mark each of the following statements true or false: (a) (1 mark) G is weakly connected.
    (b) (1 mark) G is strongly connected.
    (c) (1 mark) G has an Euler walk.
    (d) (1 mark) G contains a directed cycle as an induced subgraph. (e) (1 mark) d−(w) = 2.
  3. (5 marks) (Short question.) Consider the following flow network and flow, with source s and sink t.
    3/4

List all augmenting paths of the network under the given flow.

  1. (5 marks) (Short question.) The strategy game Civilization VI is played on a hexagonal map as shown below. The map is effectively a cylinder, with the left and right boundaries are joined together, and the top and bottom boundaries are impassable — thus in the picture below, tile a appears twice, and is adjacent to both tile b and tile c. Units can move between any pair of adjacent tiles, and this is stored in memory as a graph in which there is an edge between two tiles if they are adjacent in the map.
    aa
    b
    c
    If the map is 90 tiles wide and 56 tiles high, how many edges does the graph have? (Hint: Use the handshaking lemma.)
    A. 13440.
    B. 14829.
    C. 14940.
    D. 29658.
    E. None of the above.
  2. (5 marks) (Short question.) Consider the weighted graph below.
    Page 2 of ??
  1. (5 marks) (Short question.) Consider the 11-vertex weighted graph G below. 1
    1
    32
    232
    22
    3
    What is the weight of a minimum spanning tree of G? A. 12.
    B. 13.
    C. 14.
    D. G doesn’t have a minimum spanning tree. E. None of the above.
  2. (5 marks) (Short question.) Which of the following are valid 2-3-4 trees?
  1. (5 marks) (Short question.) Consider the unoptimised version of the union-find data structure, in which a sequence of n operations takes O(n log n) time rather than O(nα(n)) time. Suppose the current state of the data structure is as follows:
    4 6 8 12 13
    1 2 3 5 7 11 10
    9
    (a) (1 mark) What is the result of Find(13)?
    (b) (1 mark) What is the result of Find(9)?
    (c) (2 marks) Suppose we now apply the operations Union(6,8), Union(1,7) and Union(10,4) to the data structure, in this order. How many components does the data structure now have?
    (d) (1 mark) Again after applying the Union operations above, what is the maximum depth of any component of the data structure? (The answer does not depend on how ties are broken.)
  2. (5 marks) (Short question.) EvilCo Incorporated designs dastardly mazes for enterprising B-movie vil- lains. In their marketing material, they say that their mazes are so complicated that if you want to get from one point to another without retracing your steps, there’s only ever one way to do it. If one of their mazes has j junctions, how many corridors between junctions does it have, and why?
    (Note this does not include e.g. dead ends, or the entrance and exit — only corridors between two junctions count. Your answer should be short.)
    Page 4 of ?? Junction
    . . . .
    Junction
  3. (5 marks) (Medium question.) You are the CEO of a sprawling corporation, which contains many overlapping product teams. You wish to set up a representative meeting — a meeting containing at least one representative from each product team — which is as small as possible, using the fact that a single person can act as a representative for all of the teams they’re a member of. By reducing from vertex cover or otherwise, prove that it is NP-complete (under Karp reductions) to decide whether or not a k-person representative meeting exists, given a list of the teams and the value of k.
  4. (5 marks) (Medium question.) Consider the 2-3-4 tree below:
    12
    8 16
    3 6 10 14 18 20 22
    1 2 4 5 7 9 11 13 15 17 19 21 23 24 25
    After deleting the value 8 and inserting the value 30:
    (a) (1 mark) What is the depth of the resulting tree?
    (b) (2 marks) How many 3-nodes does the resulting tree have?
    (c) (2 marks) While deleting 8 and inserting 30, how many fuse, transfer and split operations were performed in total?
  5. (5 marks) (Short question.) Consider the following flow network (G, c, s, t):
    Page 5 of ??

s4a5b
15
Let A = {s,b} and B = {a,c,d,t}. What is the capacity c+(A) of the cut (A,B)? A. 8.
B. 13.
C. 21.
D. (A,B) is not a cut. E. None of the above.

  1. (5 marks) (Short question.) Consider the following circulation network.

    Which of the following is a valid circulation f?
    A. f(a,b) = 2; f(a,c) = 0; f(a,d) = 1; f(b,d) = 2; f(c,d) = 0. B. f(a,b) = 2; f(a,c) = 2; f(a,d) = 0; f(b,d) = 1; f(c,d) = 1. C. f(a,b) = 3; f(a,c) = 1; f(a,d) = 0; f(b,d) = 3; f(c,d) = 0. D. f(a,b) = 1; f(a,c) = 2; f(a,d) = 1; f(b,d) = 1; f(c,d) = 1. E. None of the above, or more than one of the above.

  2. (5 marks) (Short question.) Mark each of the following statements true or false.
    Page 6 of ??

(a) (1 mark) The problem of outputting a size-k vertex cover in a graph G if one exists or No cover otherwise, given G and k as inputs, is NP-hard.
(b) (1 mark) The problem of outputting a size-k vertex cover in a graph G if one exists or No cover otherwise, given G and k as inputs, is in NP.
(c) (1 mark) Because SAT is an NP-complete problem, it is never practical to solve a 1,000-variable instance of SAT.
(d) (1 mark) If we had working quantum computers, we know how to use them to solve NP-complete problems in polynomial time.
(e) (1 mark) If a problem has instance size n and parameter k, then an algorithm with running time √
O(n k) shows that the problem is fixed-parameter tractable.

  1. (5 marks) (Short question.) Consider an instance of weighted interval scheduling with interval set R = [(1, 5), (4, 6), (2, 11), (6, 13), (11, 16), (14, 19), (14, 21), (18, 21), (20, 25)] and weight function w given by
    w(1,5) = 3, w(4,6) = 5, w(2,11) = 7, w(14,19) = 4, w(14,21) = 6, w(18,21) = 5,
    What is the maximum possible weight of a compatible set? A. 13.
    B. 14.
    C. 15.
    D. 16.
    E. None of the above.
    w(6,13) = 3, w(20,25) = 3.
    w(11,16) = 3,
  2. (5 marks) (Short question.) You are captain of a spaceship in the far future, and you wish to traverse the galaxy from Caldari Prime to Molea Cemetary, hopping from planet to planet on the way while spending as few resources and making as much profit through trade on the way as possible. Your crew is troublesome — they require that each stop brings you strictly closer to your destination, or they will mutiny, and on arrival at a new planet they will go on shore leave and consume any goods left in your hold which you do not immediately sell. You are given a list of planets, their locations, and the (possibly negative) cost of travelling from one planet directly to another. Which of the following algorithms would be the best fit for this situation?
    A. Breadth-first search.
    B. Dijkstra’s algorithm.
    C. The Bellman-Ford algorithm.
    D. Depth-first search.
    E. There is no unique best choice from the above options.
  3. (10 marks) (Short question.) You have been placed in charge of overseeing plywood distribution in the USSR. You are given a list of production facilities F1, . . . , Fn and destinations D1, . . . , Dm. Each facility Fi can produce at most pi units of plywood per day, and each destination Dj requires at least rj units of plywood per day. The cost of moving one unit of plywood from facility Fi to destination Dj is ci,j, and you may assume this scales linearly (so that e.g. the cost of moving half a unit is ci,j/2). You wish to ensure that the requirements of each destination are met while spending as little on transportation as possible. Formulate this as a linear programming problem. (Your answer does not have to be in standard form, and you do not have to justify it.)
  4. (10 marks) (Medium question.) You are given a directed graph G with vertex set {v1 , . . . , vn } which has the following property: for any edge (vi,vj) ∈ E(G), we have i < j. That is, edges are always directed from vertices with lower indices to vertices with higher indices. You wish to find the length of
    Page 7 of ??

a longest path from v1 to vn, returning Null if no such path exists — recall that the length of a path is the number of edges it contains. Fill in the blanks of the following dynamic programming algorithm.
1 2 3 4 5 6 7
8
9 10
begin
Initialise A to an empty array indexed by 1, . . . , n. Set A[n] ← BLANK.
for i = n − 1 to 1 do
LetS←{j:vj ∈N+(vi)}.
if A[j] = Null for all j ∈ S then
Set A[j] ← BLANK.
else
Let X be the BLANK of the non-Null values of {A[j]: j ∈ S}. Set A[i] ← X BLANK BLANK.
Return A[BLANK].
Options for each blank: 0, 1, Null, +, −, maximum, minimum, none of the above.

  1. (10 marks) (Medium question.) Given three distinct literals x, y and z, a ONE clause ONE(x, y, z) evaluates to True if and only if exactly one of x, y and z evaluates to True. A lonely formula is a conjunction of ONE clauses, e.g.:
    ONE(a, b, c) ∧ ONE(¬a, b, ¬c) ∧ ONE(b, c, ¬d).
    The decision problem LONELY-SAT asks whether a ONE formula given as part of the input is satisfiable. There is a valid Karp reduction from 3-SAT to LONELY-SAT which replaces each OR clause (x ∨ y ∨ z) of a 3-SAT instance with a LONELY-SAT gadget containing four new variables a, b, c and d. Which of the following gadgets will work?
    A. ONE(x,a,b)∧ONE(y,b,c)∧ONE(z,c,d).
    B. ONE(¬x,a,b)∧ONE(y,b,c)∧ONE(¬z,c,d).
    C. ONE(x,a,b)∧ONE(¬y,b,c)∧ONE(z,c,d).
    D. ONE(¬x,a,¬b)∧ONE(y,b,c)∧ONE(¬z,¬c,d). E. None of the above, or more than one of the above.
    Section 2
  2. (10 marks) (Medium question.) Let t be a natural number. Let G be an n-vertex graph with 2t vertices of odd degree and n − 2t vertices of even degree. Prove, by induction on t or otherwise, that we can write E(G) as a disjoint union of edge sets
    E(G) = E(P1) ∪ · · · ∪ E(Pt) ∪ E(H),
    where P1 , . . . , Pt are paths in G and H is a graph whose vertices all have even degree.
  3. (10 marks) Important: The two parts of this question are completely independent — they have been put together for technical Blackboard reasons. Doing part a) will not help you with part b).
    (a) (5 marks) (Long question.) Suppose that a connected n-vertex, m-edge graph G (given in adjacency- list form) contains two vertices x and y which are distance d(x, y) ≥ n − c apart, for some integer c ≥ 1. Give an algorithm which, given G, x, and an integer k as input, decides whether or not G contains a k-vertex clique in time O(m + n + ck). Briefly explain why it works and why it runs in the claimed time. (You do not need to give full pseudocode — an informal description is fine.) Hint: You may find it helpful to use a BFS tree.
    11
    Page 8 of ??

(b) (5 marks) (Long question.) Let n ≥ 8 be an even integer. Using Dirac’s theorem or otherwise, prove that any n-vertex graph whose vertices all have degree at least n2 + 3 must contain a spanning subgraph whose vertices all have degree exactly 5. (Your answer shouldn’t need to be more than a paragraph or two.)

  1. (10 marks) Important: The two parts of this question are completely independent — they have been put together for technical Blackboard reasons. Doing part a) will not help you with part b).
    (a) (5 marks) (Long question.) You are teaching a class of schoolchildren C1, . . . , Cn in the pre-COVID era. The end of term is approaching, and you have bought them a large tub of chocolates — you plan to give them four chocolates each, and eat the rest yourself. However, there are many types T1, . . . , Tk of chocolate in the tub, and not every child likes every type of chocolate — a given child Ci is willing to accept only chocolates from a set Si ⊆ {T1, . . . , Tk}. The tub is also not bottomless — for each i ∈ [k], there are only ti > 0 chocolates of type Ti. Give an algorithm which, given T1,…,Tk, t1,…,tk and S1,…,Sn, assigns four chocolates to every child in polynomial time if possible and returns Impossible otherwise.
    (b) (5 marks) (Long question.) Your company has been tasked with producing a set of widgets w1, . . . , wt, using a 3D printer to make the parts. Each widget wi must be first printed in time pi, then assem- bled in time ai. You have enough workers to be able to assemble as many widgets as you like in parallel, but you can only print one widget at a time. You would like to find an order of printing the widgets which allows you to finish assembling them all as quickly as possible. Give a greedy algorithm which, given p1,…,pt and a1,…,at, will output an optimal widget order in O(tlogt) time. Give a careful proof that it works (e.g. using a greedy-stays-ahead or exchange argument).
  2. (10 marks) (Medium question.) Consider the following greedy algorithm for SAT.

    Input : A CNF formula F with variables x1,…,xn and clauses C1,…,Cm. Output: A satisfying assignment if F is satisfiable, No otherwise.
    begin
    for i = 1 to n do
    Let ai be the number of clauses Cj containing xi.
    Let bi be the number of clauses Cj containing xi such that every other literal in Cj has
    already been set to False.
    Let ci be the number of clauses Cj containing ¬xi.
    Let di be the number of clauses Cj containing ¬xi such that every other literal in Cj has
    already been set to False. if bi > 0 and di > 0 then
    Return No.
    else if bi > 0 then
    Set xi to True. else if di > 0 then
    Set xi to False. else if ai ≥ ci then
    Set xi to True. else
    Set xi to False.
    Return the values of x1,…,xn.
    Give a counterexample to show that this algorithm does not work, and briefly explain it.
    Page 9 of ??

Leave a Reply

Your email address will not be published. Required fields are marked *