Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
courses:cs211:winter2012:journals:jeanpaul:section2 [2012/01/14 23:15] – mugabej | courses:cs211:winter2012:journals:jeanpaul:section2 [2012/01/17 05:02] (current) – mugabej | ||
---|---|---|---|
Line 6: | Line 6: | ||
The five representative problems are:\\ | The five representative problems are:\\ | ||
- | * Interval Scheduling\\ | + | ===Interval Scheduling=== |
This problem arise when there is a situation where one has a resource and many people request to use the resource for periods of time. A request is like this: Can I reserve the resource starting at time //s//,until time //f//?. The assumption is that the resource can be used by at most one person at a time. A scheduler accepts a subset of the requests, rejecting others, so that the accepted requests do not overlap in time.The goal is to maximize the number of requests accepted. There will be //n// requests labeled 1, | This problem arise when there is a situation where one has a resource and many people request to use the resource for periods of time. A request is like this: Can I reserve the resource starting at time //s//,until time //f//?. The assumption is that the resource can be used by at most one person at a time. A scheduler accepts a subset of the requests, rejecting others, so that the accepted requests do not overlap in time.The goal is to maximize the number of requests accepted. There will be //n// requests labeled 1, | ||
Line 14: | Line 14: | ||
This problem can be solved by an algorithm that orders the set of requests according to a certain heuristic and then " | This problem can be solved by an algorithm that orders the set of requests according to a certain heuristic and then " | ||
\\ | \\ | ||
- | * Weighted Interval Scheduling | + | === Weighted Interval Scheduling |
In this situation, each request interval //i// has an associated // | In this situation, each request interval //i// has an associated // | ||
Any algorithm for this problem must be very sensitive to the values, and yet degenerate to a method for solving(unweighted) Interval Scheduling when all values equal 1.\\ | Any algorithm for this problem must be very sensitive to the values, and yet degenerate to a method for solving(unweighted) Interval Scheduling when all values equal 1.\\ | ||
Line 20: | Line 20: | ||
To solve this problem, a technique called //dynamic programming// | To solve this problem, a technique called //dynamic programming// | ||
\\ | \\ | ||
- | * Bipartite Matching | + | |
- | *A graph G = (V,E) is // | + | === Bipartite Matching=== |
- | *A matching in a graph G = (V,E)is a set of edges M (M included in E) with the property that each node appears in at most one edge of M. | + | A graph G = (V,E) is // |
- | *M is a perfect matching if every node appears in exactly one edge of M | + | |
+ | | ||
+ | * If we consider a bipartite graph G' with a set X of //n// men, a set Y of //n// women, and an edge from every node in X to every node in Y, then the matchings and perfect matchings in G' are exactly the matchings and perfect matchings among the set of men and women. But there are no preference lists in the bipartite graphs problem. The complexity added is that there is not necessarily an edge from every //x// in X to every //y// in Y.\\ | ||
+ | \\ | ||
+ | Matchings in bipartite graphs model situations in which objects are being assigned to other objects. Let the nodes in X represent jobs,the nodes in Y represent machines, and an edge (// | ||
+ | \\ | ||
+ | The //Bipartite Matching Problem// is: Given an arbitrary bipartite graph G,find a matching of maximum size. If |X| = |Y| = //n//, then there is a perfect matching if and only if the maximum matching has size //n//.\\ | ||
+ | \\ | ||
+ | A technique called // | ||
+ | \\ | ||
+ | ===Independent Set=== | ||
+ | |||
+ | Given a graph G = (V,E), a set of nodes S (S included in V) is // | ||
+ | |||
+ | The // | ||
+ | \\ | ||
+ | This Problem models any situation in which one is trying to choose among a collection of objects and there are pairwise conflicts among some of the objects.Interval Scheduling and Bipartite Matching are special cases of the Independent Set Problem.\\ | ||
+ | \\ | ||
+ | For Interval Scheduling, if you define a graph G = (V,E) in which nodes are the intervals and there is an edge between each pair of them that overlap, then the independent sets in G are just the compatible subsets of intervals. For the Bipartite Matching, given a bipartite graph G' = (V', | ||
+ | \\ | ||
+ | Today, an efficient algorithm to solve this problem is not known and it is conjectured that no efficient algorithm exists. The best that can be done to this day is to use brute-force to try all subsets of the nodes, | ||
+ | |||
+ | |||
+ | === Competitive Facility Location=== | ||
+ | |||
+ | Lets' consider two large companies P1 and P2, | ||
+ | \\ | ||
+ | __Formulating the problem__: \\ | ||
+ | *the geographic region in question is divided into //n// zones, | ||
+ | * Each zone //i// has a value // | ||
+ | * Certain zones (//i,j//) are // | ||
+ | * We model those conflicts using a graph G = (V,E) where V is the set of zones, and (//i,j//) is an edge in E if the zones //i// and //j// are adjacent | ||
+ | * The zoning requirement then says the full set of franchises opened must form an independent set in G. | ||
+ | * Thus our problem consists of the two players, P1 and P2, alternatively selecting nodes in G,with P1 moving first.At all times, the set of all selected nodes must form an independent set in G. | ||
+ | * Suppose that player P2 has a target bound B and we want to know if there is a strategy for P2 such that no matter how P1 plays,P2 will be able to select a set of nodes with a total value of at least B. This is an instance of the // | ||
+ | \\ | ||
+ | Not only is it computationally difficult to determine whether a player has a winning strategy, on a reasonably sized graph, it would be hard to be convinced that a player has a winning strategy. The // | ||
+ | \\ | ||
+ | |||
+ | Motivations for discussing the five representative problems is obvious: They will serve as reference as we solve problems relating to algorithms. They simply form a reference for other problems. The question I have though is: "Do these problems represent all of the problems we can ever encounter when dealing with algorithm analysis or they serve as reference for most of the problems?" | ||
+ | |||
+ | I want to remember the difference between NP-complete and PSPACE-complete problems: For NP-complete, | ||
+ | |||
+ | Since this section was straightforward, | ||
+ | |||