homework | Algorithm | 算法代写 – CS 344: Design and Analysis of Computer Algorithms Rutgers: Spring 2022

CS 344: Design and Analysis of Computer Algorithms Rutgers: Spring 2022

homework | Algorithm | 算法代写 – 这是一个Algorithm的practice, 考察Algorithm的理解, 涵盖了Algorithm等方面, 这个项目是homework代写的代写题目

算法代写 代写算法 Algorithm代写 代写Algorithm  算法作业代写

Redistribution out of this class is strictly prohibited.

CS 344: Design and Analysis of Computer Algorithms Rutgers: Spring 2022

Homework

Deadline: Thursday, March 24, 11:59 PM

homework Policy

  • If you leave a question completely blank, you will receive 25% of the grade for that question. This however does not apply to the extra credit questions.
  • You are allowed to discuss the homework problems with other students in the class.But you must write your solutions independently. You may also consult all the materials used in this course (video recordings, notes, textbook, etc.) while writing your solution, but no other resources are allowed.
  • Do not forget to write down your name and whether or not you are using one of your two extensions. Submit your homework on Canvas.
  • Unless specified otherwise, you may use any Algorithm covered in class as a black box for example you can simply write use DFS (or BFS) to find all vertices reachable from a given vertexsin a graph GinO(n+m) time. You arestrongly encouraged to use graph reductionsinstead of designing an algorithm from scratch whenever possible (even when the question does not ask you to do so explicitly).
  • Remember to alwaysprove the correctnessof your algorithms andanalyze their running time (or any other efficiency measure asked in the question).
  • The Challenge yourself and Fun with algorithms are both extra credit. These problems are significantly more challenging than the standard problems you see in this course (including lectures, homeworks, and exams). As a general rule, only attempt to solve these problems if you enjoy them.

Problem 1.You are given a set ofn(closed) intervals on a line:

[a 1 , b 1 ],[a 2 , b 2 ], ...,[an, bn].

Design anO(nlogn) time greedy algorithm to select theminimumnumber of points on the line between [miniai,maxjbj] such that any input interval contains at least one of the chosen points.

Example: If the following 5 intervals are given to you:

[2,5],[3,9],[2. 5 , 9 .5],[4,8],[7,9],

then a correct answer is:{ 5 , 9 }(the first four intervals contain number 5 and the last contains number 9; we also definitely need two points since [2,5] and [7,9] are disjoint and no single point can take care of both of them at the same time).

Redistribution out of this class is strictly prohibited.

Problem 2.You are given two arrays of positive integersA[1 :n] andB[1 :n]. The goal is to re-order the arraysAandBso that the average difference between entries ofAandBwith the same index, after the re-ordering, is minimized. In other words, we want to change the orders of numbers inAandB, so that

1
n
n
i=
|A[i]B[i]|

is minimized.

Design anO(nlogn) time greedy algorithm for this problem.

Example: IfA= [3, 2 , 5 ,1] andB= [5, 7 , 2 ,9], we can re-orderAto [1, 2 , 3 ,5] andBto [2, 5 , 7 ,9] to achieve

1
4
^4
i=
|A[i]B[i]|=
1
4
(1 + 3 + 4 + 4) = 3,

which you can also check is the minimum value.

Problem 3.You are stuck in some citysin a far far away land and you know that your only way out is to reach another cityt. This land consists of a collection ofccitiesandpports(bothsandtare cities). The cities in the land are connected by one-wayroadsto other cities and ports and you can travel these roads as many times as you like. In addition, there are one-wayshipping routesbetween certain ports. However, unlike the roads, you need a ticket to use these shipping routes and you only have 10 tickets; so effectively you can use at most 10 shipping routes in your journey.

Assume the map of this land is given to you as a graph withn=c+pvertices corresponding to the cities and ports andmdirected edges showing one-way roads and shipping routes. Design an algorithm that in O(n+m) time outputs whether or not it is possible for you to go from citysto citytin this land following the rules above, i.e., by using any number of roads but at most 10 shipping routes. (25 points)

Example: An example of an input map (on the left) and a possible solution (on the right) is the following:

Problem 4.This question is from your textbook (Question 11 in Chapter 05).

A number maze is akkgrid of positive integers. A token starts in the upper left corner and your goal is to move the token to the lower-right corner. On each turn, you are allowed to move the token up, down, left, or right; the distance you may move the token is determined by the number on its current square. For

Redistribution out of this class is strictly prohibited.

example, if the token is on a square labeled 3, then you may move the tokenexactlythree steps up, three steps down, three steps left, or three steps right. However, you are never allowed to move the token off the edge of the board.

Design and analyze an algorithm that inO(k^2 ) time determines if there is a way to move the token in the given number maze or not. (25 points)

Example:Given the number maze in the following figure, your algorithm should returnYes.

Figure 1: A 55 maze with the answerYes.

Hint:Think of graph reductions this problem is not that different from the fill coloring problem after all.

Challenge Yourself.Consider Problem 4 again, except this time, you are additionally allowed to change the value ofup to10 different cells in the maze, each by plus one or minus. You can decide how many cells from 0 to 10 you want to change, and which cells these are, as well as for each chosen cell whether you like to increase the value of the number inside by one, or decrease it by one. The goal is to see if there is a way of making a change as described above so that the maze can be solved or not. The output isYes, along with the set of cells to change their value (and whether you increase or decrease them), if one can make proper changes to solve the maze, andNootherwise. (+10 points)

Fun with Algorithms. We are given an undirected connected graphG= (V, E) and verticessandt. Initially, there is a robot at positionsand we want to move this robot to positiontby moving it along the edges of the graph; at any time step, we can move the robot to one of the neighboring vertices and the robot will reach that vertex in the next time step.

However, we have a problem: at every time step, a subset of vertices of this graph undergo maintenance and if the robot is on one of these vertices at this time step, it will be destroyed (!). Luckily, we are given the schedule of the maintenance for the nextTtime steps in an arrayM[1 :T], where eachM[i] is a linked-list of the vertices that undergo maintenance at time stepi.

Design an algorithm that finds a route for the robot to go fromstotin at mostTseconds so that at no timei, the robot is on one of the maintained vertices, or output that this is not possible. The runtime of your algorithm should ideally beO((n+m)T) but you will receive partial credit for worse runtime also.

(+10 points)