CS代考 The exercises – cscodehelp代写

The exercises
School of Computing and Information Systems COMP90038 Algorithms and Complexity
Tutorial Week 3 Sample Answers
7. One way of representing an undirected graph G is using an adjacency matrix. This is an n × n matrix, where n is the number of nodes in G. In this matrix, we label the rows and the columns with the names of G’s nodes. For a pair (x, y) of nodes, the matrix has a 1 in the (x,y) entry if G has an edge connecting x and y; otherwise the entry has a 0. (As the graph is undirected, this is somewhat redundant: (x, y) and (y, x) will always be identical.) A complete graphs is one in which x and y are connected, for all x, y with x ̸= y. We don’t exclude the possibility of a loop, that is, an edge connecting a node to itself, although loops are rare.
How can you tell from its matrix whether an undirected graph
(a) is complete? (b) has a loop?
(c) has an isolated node?
Answer:
(a) All elements (except those on the main diagonal) are 1. (b) Some element on the main diagonal is 1.
(c) Some row (and hence some column) has all zeros.
8. Design an algorithm to check whether two given words are anagrams, that is, whether one can be obtained from the other by permuting its letters. For example, garner and ranger are anagrams.
Answer: Note that we cannot just say “for each letter in the first word, check that it occurs in the second, and vice versa.” (Why not?)
A nice solution sorts the letters in each word and simply compares the two results. This solution scales well, that is, has good performance even as the words involved grow longer.
9. Hereweconsiderafunctionfirst_occ,suchthatfirst_occ(d,s)returnsthefirstposition (in string s) which holds any symbol from the collection d (and returns -1 if there is no such position). For simplicity let us assume both arguments are given as strings. For example, first_occ(”aeiou”, s) means “find the first vowel in s.” For s = ”zzzzzzzzzzzz” this should return -1, and for s = ”Phlogiston”, it should return 3 (assuming we count from 0).
Assuming strings are held in arrays, design an algorithm for this and find its complexity as a function of the lengths of d and s.
Suppose we know that the set of possible symbols that may be used in d has cardinality 256. Can you find a way of utilising this to speed up your algorithm? Hint: Find a way that requires only one scan through d and only one through s.
Copyright © University of Melbourne 2021

Answer: Let m be the length of d and let n be the length of s. The obvious algorithm is to scan through s and, for each symbol x met, go through d to see if that was a symbol we were looking for. In the worst case, when no symbols from d are in s, this means making mn comparisons. (We could also structure the search the other way round: for each element of d, find its first occurrence, and then, based on that, decide which occurrence was the earliest of them all; this also leads to mn comparisons in the worst case.)
Knowing that there are 256 possible symbols that may be used in d allows us to introduce an array first, indexed by the symbols. (If we are talking ASCII characters then, conve- niently, the indices run from 0 to 255.) Initialise this array so all its elements are, say, -1. Now scan through s. For each symbol x in s, if first[x] is -1, replace it with x’s position. Note that we have not considered d at all so far; we have only recorded, in first, where the first occurrence of each symbol is (and left the value as -1 for each symbol that isn’t in s).
Now all we need is a single scan through d, to find the value of first[x] for each symbol x in d. As we find these, we keep the smallest such value. It this value is -1, none of the symbols from d was found in s. Otherwise the value is the first occurrence of a symbol from d.
The complexity in this case is n + m. For most reasonable values of m and n, this is smaller than mn, so we have a better algorithm, even taking the overhead of maintaining first into account. Essentially we have traded in some space (the array first) to gain some time. This kind of time/space trade-off is a familiar theme in algorithm design.
10. Gaussian elimination, the classical algorithm for solving systems of n linear equations in n unknowns, requires about 31 n3 multiplications, which is the algorithm’s basic operation.
(a) How much longer should we expect Gaussian elimination to spend on 1000 equations, compared with 500 equations?
(b) You plan to buy a computer that is 1000 times faster than what you currently have. By what factor will the new computer increase the size of systems solvable in the same amount of time as on the old computer?
Answer:
(a) The answer is: 8 times longer, and it does not depend on the particular numbers of equations given in the question. We need 13(2n)3 operations for 2n equations and
13 13(2n)3 8n3
3n operationsforn. Theratiois 13n3 = n3 =8.
(b) If the new machine needs tnew units of time for a job, the old one needs told = 1000 tnew units. Let m be the number of equations handled by the new machine in the time the old machine handles n. The new machine handles m in time 31 m3 and n in time 13n3. So we have
Solving for m we get
So we can now solve systems that are 10 times larger.
13m3 = 1000 · 13n3 m = √3 1000 n3 = 10n
Copyright © University of Melbourne 2021

11. For each of the following pairs of functions, indicate whether the components have the same rate of growth, and if not, which grows faster.
(a) n(n + 1) and 2000 n2 (c) log2 n and lnn
(e) 2n−1 and 2n
(b) 100n2 and 0.01n3 (d) log2 n and log2 n2 (f) (n−1)! and n!
Here ! is the factorial function, and log2 n is the way we usually write (log2 n)2. Answer:
(a) Same rate of growth.
(b) 0.001n3 grows faster than 100n2. Namely, as soon as n > 1, we have n2 < n3. So pick the constant c to be 10,000. When n > 1, we have 100n2 < 10, 000 · (0.001n3). (c) Same rate of growth. (d) log2 n2 = 2 log2 n, so log2 n2 has the same rate of growth as log2 n. However, log2 n grows faster; namely limn→∞ log2 n·log2 n = limn→∞ log2 n = ∞. log2 n (e) Same rate of growth, since 2n = 2 · 2n−1. (f) n! grows faster than (n − 1)!; namely limn→∞ n! = limn→∞ n = ∞. (n−1)! 12. Eight balls of equal size are on the table. Seven of them weigh the same, but one is slightly heavier. You have a balance scale that can compare weights. How can you find the heavier ball using only two weighings? Answer: Put three balls on each weighing pan. If the six balance, use the second weighing to compare the two remaining balls. Otherwise keep just the three balls that were heavier than the three they were compared to. Put one of the three on one pan, and another on the other pan. If one is heavier, that’s the heavy ball; otherwise the heavy ball is the one remaining. 13. There are 18 gloves in a drawer: 4 pairs of red gloves, 3 pairs of yellow, and 2 pairs of green. You select gloves in the dark, which means you cannot assess colour nor left/right- handedness. You can check the gloves only after the selection has been made. What is the smallest number of gloves you must pick to have at least one matching pair in the best case? In the worst case? Answer: The best case is obviously 2 gloves. To analyse the worst case, note that we might pick as many as 4 red, 3 yellow, and 2 green gloves, and yet not have a pair, because for each colour, we happened to take gloves of the same orientation, or “handed-ness”. So to be absolutely certain that we have a pair, we need to pick 4+3+2+1 = 10 gloves. 14. After washing 5 distinct pairs of socks, only 8 socks come back from the clothes line. Hence you are left with 4 complete pairs in the best case, and 3 in the worst case. What is the probability of the best case scenario? Answer: There are (10) = 45 ways to select two socks from 10. In five of these cases the 2 two socks have the same colour. These five cases correspond to the best-case scenario, in that we are left with four complete pairs. The probability of this happening is 5 = 1. 45 9 Copyright © University of Melbourne 2021

Leave a Reply

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