TORONTO KIDS COMPUTER CLUB | PMCA Saturday 18:30 Python Homework 22.08.20.
21001
post-template-default,single,single-post,postid-21001,single-format-standard,ajax_fade,page_not_loaded,,qode-theme-ver-7.6.2,wpb-js-composer js-comp-ver-6.10.0,vc_responsive

PMCA Saturday 18:30 Python Homework 22.08.20.

25 Aug PMCA Saturday 18:30 Python Homework 22.08.20.

Question:
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 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 (0,−1) and moving to (−1,−5). You will encode in your program the current well plan shown in the figure below:

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 200 units below ground, nor
  • be more than 200 units to the left of the original starting point, nor
  • be more than 200 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 (−1,−5) 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

Output for Sample Input 2
1 -5 safe
1 -15 DANGER
No Comments

Sorry, the comment form is closed at this time.