문제
Problem 1: Mirrors [Brian Dean and Travis Hance, 2013]
Farmer John's cows have been causing too much trouble around the farm, and FJ therefore wants to keep a more watchful eye on them. By installing N reflective fences
On a 2D map of FJ's farm, fence i appears as a short line segment centered at integer location
FJ plans to sit at his house at position (0,0) and look directly to the right (in the +x direction). With his gaze bouncing off some of the reflective fences on his farm, he hopes to be able to see the point (a,b). Unfortunately, FJ thinks he oriented one of his fences incorrectly (e.g., '\' instead of '/'). Please output the index of the first fence in FJ's list such that by toggling its direction (between '/' and '\' or vice versa), FJ will be able to see the point (a,b).
If FJ can already see the point (a,b) without toggling any fence, please output 0. If it is still impossible for him to see (a,b) even after toggling up to a single fence, output -1.
PROBLEM NAME: mirrors
입력
* Line 1: Three space-separated integers, N, a, and b.
* Lines 2..1+N: Line i+1 describes fence i and contains either "x_i y_i /" or "x_i y_i \", where (x_i, y_i) is the location of the center of the fence, and \ or / refers to its orientation.
출력
* Line 1: The index of the first fence for which toggling that fence allows FJ to see the point (a,b). If FJ can already see the point (a,b), please output 0, or if there is no way he can see (a,b) even after toggling up to one fence, please output -1.
예제1
5 6 2
3 0 /
0 2 /
1 2 /
3 2 \
1 3 \
4
INPUT DETAILS:
A map of the farm looks like this (with H denoting FJ's house and B denoting the barn):
3 .\.....
2 //.\..B
1 .......
0 H../...
0123456
OUTPUT DETAILS:
By toggling the fence at position (3,2), FJ can see the point (a,b).
On the map:
3 .\.....
2 //./--B
1 ...|...
0 H--/...
0123456