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/15 00:01] – mugabej | courses:cs211:winter2012:journals:jeanpaul:section2 [2012/01/17 05:02] (current) – mugabej | ||
---|---|---|---|
Line 43: | Line 43: | ||
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', | 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, | + | 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, | ||