README
This commit is contained in:
parent
db5ae1a30e
commit
8eb323dc1e
12
README.md
12
README.md
@ -1,3 +1,13 @@
|
|||||||
|
Problem Description from the Kleinberg and Tardos Algorithm Textbook:
|
||||||
|
|
||||||
"Hidden surface removal is a problem in computer graphics that scarcely needs an introduction: when Woody is standing in front of Buzz, you should be able to see Woody but not Buzz; when Buzz is standing in front of Woody, . . . well, you get the idea.
|
"Hidden surface removal is a problem in computer graphics that scarcely needs an introduction: when Woody is standing in front of Buzz, you should be able to see Woody but not Buzz; when Buzz is standing in front of Woody, . . . well, you get the idea.
|
||||||
The magic of hidden surface removal is that you can often compute things faster than your intuition suggests. Here's a clean geometric example to illustrate a basic speed-up that can be achieved. You are given n nonvertical lines in the plane, labeled L1, . . . , Ln , with the ith line specified by the equation y = ai x + bi . We will make the assumption that no three of the lines all meet at a single point. We say line Li is uppermost at a given x-coordinate x0 if its y-coordinate at x0 is greater than the y-coordinates of all the other lines at x0: ai x0 + bi > aj x0 + bj for all j = i. We say line Li is visible if there is some x-coordinate at which it is uppermost - intuitively, some portion of it can be seen if you look down from “y = ∞.” Give an algorithm that takes n lines as input and in O(n log n) time returns all of the ones that are visible.
|
|
||||||
|
The magic of hidden surface removal is that you can often compute things faster than your intuition suggests. Here's a clean geometric example to illustrate a basic speed-up that can be achieved:
|
||||||
|
|
||||||
|
You are given n nonvertical lines in the plane, labeled L1, . . . , Ln , with the ith line specified by the equation y = ai x + bi . We will make the assumption that no three of the lines all meet at a single point.
|
||||||
|
|
||||||
|
We say line Li is uppermost at a given x-coordinate x0 if its y-coordinate at x0 is greater than the y-coordinates of all the other lines at x0: ai x0 + bi > aj x0 + bj for all j = i.
|
||||||
|
|
||||||
|
We say line Li is visible if there is some x-coordinate at which it is uppermost - intuitively, some portion of it can be seen if you look down from “y = ∞.”
|
||||||
|
|
||||||
|
Give an algorithm that takes n lines as input and in O(n log n) time returns all of the ones that are visible."
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user