代做FIT2004 Algorithms and data structures Past Exam 1代写C/C++程序

Past Exam 1

Faculty of Information Technology

FIT2004

Algorithms and data structures

Correctness and Complexity

Question 1

For constants b and c, consider the recurrence relation given by:

T(n) = b, if n=1

T(n) = 2 * T(n/2) + c * n , if n>1

Which of the following statements is true?

Select one:

a. T(n) = Θ(n 3 * log n)

b. T(n) = Θ(n 4 )

c. T(n) = Θ(n 3 )

d. T(n) = Θ(n 6 * log n)

e. T(n) = Θ(n 3 * log n * log n * log n)

Question 2

Consider the following algorithm, which returnsTrue if and only if m is a factor of sum(L), where L is a list of integers.

def sum_factor(L, m):

"""

Input : A list L of integers, and an integer m

Output: True if m is a factor of sum(L), and False otherwise.

For example:

>>> sum_factor([3, 1, 2, 6], 3)

True

>>> sum_factor([4, 1, 2, 6], 3)

False

"""

n = len(L)

s = 0

for i in range(n):

s = (s + L[i]) % m

return s == 0

(a) Write down a useful invariant for this algorithm.

(b) Show that the invariant you wrote is true on loop entry, and each time the loop runs.

(c) Now use your invariant to argue that the algorithm is correct.

Sorting

Question 3

Consider an input with N elements.

Please select all correct statements regarding comparison-based sorting algorithms.

Select one or more:

a. The best-case complexity of insertion sort is O(N).

b. The best-case complexity of merge sort is O(N).

c. Heap sort is stable.

d. Selection sort is stable.

e. The average-case complexity of selection sort is θ(N2).

Quickselect and Median of Medians

Question 4

The Quickselect algorithm can be run inO(N), provided we have anO(N) algorithm to find amedian pivot.

In your own words, explain why themedian of medians algorithm can be used for this purpose, even though it only gives an approximation of the median value.

Question 5

You are interviewing a large number of applicants for a job. There are three rounds of interviews, and for the first round, each applicant you interview is assigned a unique suitability ranking. These rankings are represented as an unsorted list of N items. Each item in the list is of the form(name, rank), where name is a string representing the applicant's name, andrank is a unique floating point value ranging from 0 to 100. Once you’ve completed all the interviews in the first round, you want a quick way of calculating who should move on to the second and final rounds of interviews.

The 50% of applicants who received the lowest suitability rankings will not progress any further with the interviews - they will be told they are unsuccessful in their application.

The 20% of applicants who received the highest suitability rankings can skip the second round of interviews and instead go straight to the third round.

The remaining 30% of applicants should progress to the second round of interviews.

Describe an efficient algorithm using Quickselectto determine the names ofapplicants that you know will be proceeding to the second and third round of interviews, after completing the first round. Your algorithm should run in O(N) time, and you can assume that you have access to a quickselect algorithm which runs in O(N) time.

Graph Structure and Traversal

Question 6

For each of the following operations,determine its worst-case big-Θ complexity.

In this question,

The graph G is a directed weighted graph.

V refers to the number of vertices in the graph.

E refers to the number of edges in the graph.

N(A) refers to the number of neighbors of vertexA.

Assume that in the adjacency list representation, theinterior lists are unsorted.

Time complexity to obtain all incoming edges for vertex A in an adjacency matrix representation.

• Θ(log V) • Θ(V) • Θ(V^2) • Θ(N(A)) • Θ(V+E)

• Θ(log E) • Θ(1) • Θ(E)

Time complexity to determine if an edge from vertex A to vertex B exists in an adjacency list representation.

• Θ(log V) • Θ(V) • Θ(V^2) • Θ(N(A)) • Θ(V+E)

• Θ(log E) • Θ(1) • Θ(E)

Time complexity to determine if an edge from vertex A to vertex B exists in an adjacency matrix representation.

• Θ(log V) • Θ(V) • Θ(V^2) • Θ(N(A)) • Θ(V+E)

• Θ(log E) • Θ(1) • Θ(E)

Time complexity to obtain all incoming edges for vertex A in an adjacency list representation.

• Θ(log V) • Θ(V) • Θ(V^2) • Θ(N(A)) • Θ(V+E)

• Θ(log E) • Θ(1) • Θ(E)

Information

Consider the weighted undirected graph below and answer the following questions.

Question 7

Perform. a depth-first search on the graph given above starting from node A.

Whenever you have a choice between two nodes,break ties in ascending alphabetical order.

Associate each node with the number for its position in the visiting order, ie. node A should be associated with i if A is i-th visited node.

For this question, you can ignore the edge weights.

1st visited node      • D • E • A • H • B • F • G • C

2nd visited node     • D • E • A • H • B • F • G • C

3rd visited node      • D • E • A • H • B • F • G • C

4th visited node      • D • E • A • H • B • F • G • C

5th visited node      • D • E • A • H • B • F • G • C

6th visited node      • D • E • A • H • B • F • G • C

7th visited node      • D • E • A • H • B • F • G • C

8th visited node      • D • E • A • H • B • F • G • C

Question 8

Perform. a breadth-first search on the graph given above starting from node A.

Whenever you have a choice between two nodes,break ties in ascending alphabetical order.

What is the maximum height of the resulting tree from the breadth-first-search you have performed? Just type the numerical answer.

For this question, you can ignore the edge weights.

Dynamic Programming

Question 9

Recall the following problem from the Dynamic Programming studio:

"You are trying to sell to a row of houses. You know the profits which you will earn from selling to each house 1..n. If you sell to house i, you cannot sell to housesi-1 or i+1. What is the maximum profit you can obtain?".

Consider instead the variant of the problem where if you sell to housei, you cannot sell to housesi-2, i-1, i+1 or i+2.

Suppose that you have the following DP array, where cell i of the DP array contains the maximum profit you can obtain by selling to a valid subset of the first i houses (i.e., a valid subset of {1, 2, ...,i }).

i           1         2          3              4            5           6           7             8           9           10          11             12

DP[i]   12        12        35             35          35         65         65           110        112        120        120           120

Using backtracking, determine which houses you should sell to in order tomaximise your profit (i.e determine the optimal solution to the problem that is valid for any possible house-profit arraythat would result in the DP array above).

For this question you must answer in the following format:

Write the indices of the houses that you have chosen, in ascending order, separated only by a single comma with no spaces. For example if the answer were houses 7, 8 and 9, you would write 7,8,9

Shortest Path

Question 10

Consider the following version of theBellman-Ford algorithm

and the following directed graph

Let S be the source node for the execution of the Bellman-Ford algorithm.

If the edges are relaxed in the following order (S,A), (S,B), (B,A), (B,D), (D,E), (A,D), (A,C), (D,C), (E,F), (B,C), (C,E), what is the value of dist[E]+dist[F] after the first iteration of the outer loop is finished?

Select one:

a. dist[E]+dist[F]=-7

b. dist[E]+dist[F]=-9

c. dist[E]+dist[F]=-11

d. dist[E]+dist[F]=-8

e. dist[E]+dist[F]=∞

f. dist[E]+dist[F]=-10

Question 11

Consider a run of the Floyd-Warshall algorithm on a Directed Weighted GraphG.

The run produced the following matrix:

Select the correct observation(s) that can be made from the matrix above.

Note: You do not need to validate the correctness of the matrix; but just make observations based on the given matrix.

Select one or more:

a. There is a negative cycle in the graph.

b. There is a cycle including vertices A and G.

c. There is an edge from vertex B to vertex E with a distance of 49.

d. There is a path from vertex C to vertex F with a distance of -6.

Network Flow

Information

Consider the flow network below and answer the following questions.

Question 12

What is the maximum possible flow for the given flow network above? Just type the numerical answer.

Question 13

A cut partitions the vertices into two disjoint sets,S and T, where S contains all the vertices on the source side of the cut, and T contains all the vertices on the sink side of the cut.

Consider the minimum cut of the above flow network. Select the vertices which are inS from the list of vertices below.

Select one or more:

a. s

b. a

c. b

d. c

e. d

f. t

Question 14

Consider the following two problems of circulation with demands, in which the demands are indicated in each vertex, and the capacity in each edge.

Problem 1:

Problem 2:

Which of the problems have feasible solutions?

Select one:

a. Neither Problem 1 nor Problem 2 has a feasible solution.

b. Both Problem 1 and Problem 2 have feasible solutions.

c. Only Problem 1 has a feasible solution.

d. Only Problem 2 has a feasible solution.

Efficient Lookup Structures

Question 15

Consider the following AVL tree below:

Which of the following statements are true?

Select one or more:

a. Just deleting 10 without performing rotations would keep the tree balanced.

b. Just deleting 30 without performing rotations would keep the tree balanced.

c. The AVL tree is unbalanced.

d. Just inserting 12 without performing rotations would make the tree unbalanced.

e. Just inserting 88 without performing rotations would make the tree unbalanced.

Question 16

Consider a hash table implemented with separate chainingfor collision resolution.

For a hash table withN items, which of the following data structures would cause the worst-case time complexity of an insert operation to be Θ(N) if the data structure is used to keep the separate chains.

Select one or more:

a. Binary search tree

b. Unsorted array

c. AVL tree

d. Sorted array

Retrieval Data Structures for Strings

Question 17

Assume that you have an alphabet size ofM unique characters and let S be a string of length N.

Thus, you cannot assume the alphabet size to beO(1) as discussed in the lecture. A node implemented with this condition, using an array of size M for the children is illustrated below.

For nodes implemented in this way, what is theworst-case space complexity in terms of M and N for string S of:

A suffix trie.

• Θ(N log M) • Θ(N M^2) • Θ(NM) • Θ(N)

• Θ(N log N) • Θ(N+M) • Θ(N^2 M) • Θ(M)

A suffix tree, with edges using the [start,end] or [start,length] representation.

• Θ(N log M) • Θ(N M^2) • Θ(NM) • Θ(N)

• Θ(N log N) • Θ(N+M) • Θ(N^2 M) • Θ(M)

Question 18

Assume that we are constructing thesuffix array for a stringS using the prefix doubling approach.

We have already sorted the suffixes for stringS according to theirfirst 2 characters; with the corresponding rank array shown below:

ID           1        2         3          4         5          6          7         8          9         10         11

Rank       11      10        2          7         2          7          2         9          5          6           1

We are now sorting on the first 4 characters.

For the suffixes with ID5 and ID7, describe in detail (i.e. all the steps) how will youcompare them on their first 4 characters inO(1) and what the result (order) from the comparison would be.

Applications

Question 19

Consider the following application problem.

You are the transport minister of your country.The recent disaster devastated the road network connecting all of the key locations. Thus you are to plan out the optimal roads to connect the key locations together, based on the following criteria:

You want to connect all key locationstogether; but theydo not need to be directly connected.

You are given the importance of directly connecting 2 key locations together; for all key location pairs. The importance is represented by a number for each pair of locations, and the highest this number is, the most important it is to directly connect the 2 key locations.

You are given the cost of directly connecting 2 key locations together, for all key location pairs.

For cost savings reasons, you should not build redundant roads:between any pair of locations, there should be only one possible path.

You want to maximise the importance of connecting all key locations together.

If there are multiple ways of achieving the maximum value of the importance, then you should pick the one that minimises the cost of the selected roads.

Describe how you would model this problem as a graph and algorithmically solve this problem efficiently using an algorithm you have learnt in the unit.

Question 20

You are the manager of a super computerand receive a set of requests for allocating time frames in that computer.

The ith request specifies the desired starting time si and the desired finishing time fi.

A subset of requests is compatible if there is no time overlap between any requests in that subset.

For a set of N requests, give a high-level description of an algorithm with time complexityO(N * log N) to choose a compatible subset of maximal size(i.e., you want to accept as many requests as feasible, but you cannot select incompatible requests).

Question 21

You are coordinating a final year project unit.

There are a total of 123 students that are enrolled into the unit, and there are25 topics to choose from:

Each student is allowed to select up to4 preferred topics, but they would only beassigned to only 1 topic at the end.

Each topic can be assigned to at most5 students.

You realised that it is not possible for all students to be doing their preferred topics, as some topics are more popular than others. You would however prioritize to satisfy the preferences of as many students as possible.

Describe how you would model this problemas a maximum flow problem; which is then solved using the Ford-Fulkerson method.

Question 22

The engineers in your company believe they have created a phone that is ultra-resistant against falls (perhaps even falls from as high as 150m). To test that hypothesis, your company built two prototypes and asked you to perform. the test to determine the maximum height in meters (without considering fractions) that the phone can be dropped without breaking.

There is an unknown integer value 0 ≤x ≤150 such that if the prototype is dropped from heights up tox meters it will not break, while if it is dropped from heights x+1 meters or higher it will break.Your job is to determine x. If one prototype is broken, it cannot be used in the tests anymore.

As a computer science student, you want to optimize your work. For doing so, you develop an algorithm for determining the heights you should drop the prototype at each iteration (it can take into account the result of the previous iterations). No matter what is the value of 0 ≤ x ≤150, your algorithm should be correct and determine the value of x. For an algorithm A and an unknown integer 0 ≤ x ≤150, let Drop(A, x) denote the number of times you need to drop a prototypeif you use algorithmA and x is the threshold. Let Drop(A) denote t he worst-case performance of A, which is given by the maximum of Drop(A , x) over all possible0 ≤ x ≤150.

For an optimal deterministic algorithm A that has Drop(A) as small as possible, what is the value of Drop(A)? Just type the numerical answer.

Hint: Since you have two prototypes, it is possible to do better than linear search. But as you only have two prototypes, you need to be very careful if only one prototype remains intact (and thus the search cannot be as efficient as binary search).





热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图