CSC373-F24-Assignment-1

CSC373 F24: Assignment 1

Due: September 30, by midnight

Guidelines: (read fully!!)

  • Your assignment solution must be submitted as a typed PDF document. Scanned handwritten solutions, solutions in any other format, or unreadable solutions will not be accepted or marked. You are encouraged to learn the LATEX typesetting system and use it to type your solution. See the course website for LATEX resources.
  • Your submission should be no more than 8 pages long, in a single - column US Letter or A4 page format, using at least 9 pt font and 1 inch margins.
  • To submit this assignment, use the MarkUs system, at URL University of Toronto Computer Science Teaching Labs MarkUs courses
  • This is a group assignment. This means that you can work on this assignment with at most one other student. You are strongly encouraged to work with a partner. Both partners in the group should work on and arrive at the solution together. Both partners receive the same mark on this assignment.
  • Work on all problems together. If one of you writes the solution to a (sub -)problem, then the other student should proof read it. Both members of a group are responsible for understanding all solutions to all problems in their submission.
  • You may not consult any other resources except: your partner; your class notes; your textbook and assigned readings. Consulting any other resource, or collaborating with students other than your group partner, is a violation of the academic integrity policy!
  • You may use any data structure, algorithm, or theorem previously studied in class, or in one of the prerequisites of this course, by just referring to it, and without describing it. This includes any algorithm, or theorem we covered in lecture, in a tutorial, or in any of the assigned readings. Be sure to give a precise reference for the data structure/algorithm/result you are using.
  • Unless stated otherwise, you should justify all your answers using rigorous arguments. Your solution will be marked based both on its completeness and correctness, and also on the clarity and precision of your explanation.

Question 1. (11 marks)

In this question you are given as input n intervals I1 = [a1, b1],..., In = [an, bn] on the real line. Each intervals Ij is specified by the two numbers aj nd bj. We assume that aj<bj for all j. We also assume that no two intervals share any of their endpoints, i.e., all the numbers a1,...,an,b1,...,bn re distinct. The intervals are given in two arrays A[1...n] and B[1...n] where A[j]=aj and B[j]=bj.

We will say that intervals Ij and Ik cross if Ij∩Ik≠∅ but neither interval contains the other one. In other words, Ij and Ik cross if exactly one of the endpoints of Ik is contained in Ij.

Part a. (3 marks) Suppose that there exists some number x so that aj<x for all j, and bj>x for all j. Give an algorithm running in worst case time complexity O(nlogn) to compute the number of pairs j<k such that Ij and Ik cross. Justify your answer.

Hint: use one of the divide and conquer algorithms from class.

Part b. (8 marks) Give a divide and conquer algorithm that computes the number of pairs j<k such that Ij and Ik cross, without making the assumption from the previous subquestion. Your algorithm should run in worst case time complexity O(nlog2n). Justify your answer.

Part c. (7 marks) (Bonus question - Optional). Modify your algorithm so that it runs in worst case time complexity O(nlogn). Justify your answer.

Hint: Try to call any subroutine that takes time O(nlogn) only once, rather than recursively.

Question 2. (19 marks)

In this question, you are tasked with deciding the locations for k grocery stores, to serve n houses on a street. Suppose we model the street as the interval from 0 to 1, and the locations of the houses are given as real numbers x1,...,xn∈[0,1]. You can assume that x1<x2...<xn, i.e., the locations are sorted from left to right, and that they are given to you as an array x[1...n] where x[i]=xi. Each week, one of the people living in each house travels once to their closest grocery store to buy their groceries. Your goal is to compute the locations y1,...,yk∈[0,1] k grocery stores that minimize the total distance each household travels every week, given x and k as input.

Part a. (4 marks) Prove that if k=1, then the optimal location of the single grocery store is the median of x1,...,xn. I.e., the total distance each household travels to the grocery store at location y |x1−y|+...+|xn−y| is minimized by choosing y to be the median of x1,...,xn. Here we define the median as follows: recalling that x1<...<xn are sorted, the median is x⌈(n+1)/2⌉. So, the median of x1<x2 is x2, and the median of x1<x2<x3 is x2 as well. (This may not be how you have seen medians defined for n even; any of the standard definitions would work, but please stick to the one above.)

Hint: There are many ways to prove this. One possibility is to show that, for x1≤...≤xn, |x1−y|+...+|xn−y|≥|xn−x1|+|xn−1−x2|+...+|x⌈(n+1)/2⌉−x⌊(n+1)/2⌋|, and that the two sides of the inequality are equal when y is the median.

Part b. (5 marks) For 1≤i≤j≤n, let M[i,j] equal |xi−y|+...+|xj−y| where y is the median of xi,...,xj. Give an algorithm that computes all values of M[i,j] for all 1≤i≤j≤n worst case time complexity O(n2) (i.e., constant time per pair of i and j). Justify your answer.

Part c. (6 marks) Give an algorithm that computes the minimum total travel distance achievable with k store locations. I.e., you need to output the minimum of $min {j = 1}^{k}\left|x{1} - y_{j}\right| +... + min {j = 1}^{k}\left|x{n} - y_{j}\right|$ over all choices of y1,...,yk∈[0,1]. Your algorithm should run in worst case time complexity O(kn2). Use bottom - up dynamic programming, and be precise about your choice of subproblems, and the optimal substructure you are using, i.e., the recurrence (Bellman equation) satisfied by the subproblems, and its base cases. Give pseudocode for your algorithm, and justify your answers.

Hint: You can also equivalently write the objective (1) as $min {X{1},..., X_{k}}\left{min {y{1} \in[0,1]}\left(\sum_{i \in X_{1}}\left|x_{i} - y_{1}\right|\right) +... + min {y{k} \in[0,1]}\left(\sum_{i \in X_{k}}\left|x_{i} - y_{k}\right|\right)\right}$, where the first minimum is over all ways to partition x1,...,xn into disjoint subsets X1,...,Xk. In other words, rather than directly choosing the store locations y1,...,yk we first choose the set of households xj which will go to store j, and then we choose the location yj of the j - th store to minimize the total distance the households in xj need to travel.

Part d. (4 marks) Modify your algorithm from the previous problem to also output the choice of store locations y1,...,yk that minimizes the total distance travelled. Your algorithm should still run in worst case time complexity O(n2k). Justify your answer.

Question 3. (14 marks)

The Galactic Research Society (GRS) has decided to organize an interstellar expedition. The president insists that exactly k members, including herself, join the expedition, and all selected members are required to participate.

There are n GRS members, and they are organized in a strict hierarchical structure (i.e., a tree), with the president at the root. Every society member is represented as a node in the tree. Every member except the president has a supervisor (their parent in the tree), and members supervise at most two other members (their children in the tree).

The society’s HR office has determined a “tension coefficient” between each member and their supervisor. This is a real number, and represents the degree to which there is tension between the member and their supervisor: a large positive number means their relationship is quite tense and there is potential for conflict, and a negative number with large absolute value means they get along very well.

Your task is to use a dynamic programming algorithm to choose exactly k members to join the expedition such that the total tension is minimized. You can assume that k (1≤k≤n) is given to you, and also that the GRS hierarchy is given to you as a rooted binary tree T=(V,E), and each edge e=(u,v)∈E of the tree is labeled by the tension coefficient te=tu,v. The total tension of a set S⊆V of k GRS members equals the sum of the te for all e=(u,v) where u and v are both in s. I.e., we add up the tension coefficients over all pairs of a society member and their supervisor who are both selected for the expedition.

Part a. (7 marks) Define the subproblem structure you are using, and specify a recurrence satisfied by each subproblem, as well as the base cases of the recurrence. The recurrence should allow you to compute the value of a subproblem quickly (certainly in polynomial time), assuming the values of “smaller” subproblems have already been computed. Justify the recurrence.

Part b. (3 marks) Using your recurrence from the previous question, give a bottom - up dynamic programming algorithm to compute the smallest possible total tension of a set S of k GRS members that includes the president (root of the tree). Your algorithm should run in time polynomial in the total number of GRS members n. Give pseudocode for your algorithm, and analyze its worst case running time.

Part c. (4 marks) Modify your algorithm from the previous subproblem to also output a set S of k GRS members, including the president, that minimizes the total tension. Analyze the modified algorithm’s worst case running time.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值