Canadian Computing Competition: 2011 Stage 1, Junior #4
Boring is a type of drilling, specifically, the drilling of a tunnel, well, or hole in the earth. With some recent events, such as the Deepwater Horizon oil spill and the rescue of Chilean miners, the public became aware of the sophistication of the current boring technology. Using the technique known as geosteering, drill operators can drill wells vertically, horizontally, or even on a slant angle.
A well plan is prepared before drilling, which specifies a sequence of lines, representing a geometrical shape of the future well. However, as new information becomes available during drilling, the model can be updated and the well plan modified.
Your task is to write a program that verifies the validity of a well plan by verifying that the borehole will not intersect itself. A two-dimensional well plan is used to represent a vertical cross-section of the borehole, and this well plan includes some drilling that has occurred starting at and moving to . You will encode in your program the current well plan shown in the figure below:
-3 | -2 | -1 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
-1 | ||||||||||||||
-2 | ||||||||||||||
-3 | ||||||||||||||
-4 | ||||||||||||||
-5 | ||||||||||||||
-6 | ||||||||||||||
-7 | ||||||||||||||
-8 |
Input Specification
The input consists of a sequence of drilling command pairs. A drilling command pair begins with one of four direction indicators (d
for down, u
for up, l
for left, and r
for right) followed by a positive length. There is an additional drilling command indicated by q
(quit) followed by any integer, which indicates the program should stop execution. You can assume that the input is such that the drill point will not:
- rise above the ground, nor
- be more than units below ground, nor
- be more than units to the left of the original starting point, nor
- be more than units to the right of the original starting point
Output Specification
The program should continue to monitor drilling assuming that the well shown in the figure has already been made. As we can see is the starting position for your program. After each command, the program must output one line with the coordinates of the new position of the drill, and one of the two comments safe
, if there has been no intersection with a previous position or DANGER
if there has been an intersection with a previous borehole location. After detecting and reporting a self-intersection, your program must stop.
Sample Input 1
l 2
d 2
r 1
q 0
Output for Sample Input 1
-3 -5 safe
-3 -7 safe
-2 -7 safe
Sample Input 2
r 2
d 10
r 4
q 0
Output for Sample Input 2
1 -5 safe
1 -15 DANGER
Comments
why am I failing the last test case? https://dmoj.ca/submission/6508342
https://www.boringcompany.com/
which point is the original starting point,0 -1 or -1 -5.
Never mine straight down
For test case #3, the input given doesn't seem to seem to intersect, but yet there is DANGER on the last step.
You intersect at 1 -5 for the third test case.
The first command of the test case was to dig right from -1 -5 → 2 -5, digging up the blocks:
0 -5, 1 -5, 2 -5
The last command of the test case was to dig down from 1 -4 → 1 -6, digging up the blocks:
1 -5, 1 -6
Hopefully this answers your question.
How does the second sample input output Danger? They don't seem to intersect?
OH YES TY
There is no "q 0". Does there not need to be one if the program terminates due with "DANGER"?
Your program must stop when it's in
DANGER
, so it's implied you are not to read input past that point. So yes, there need not be aq
directive if the drill is inDANGER
.