Flood Area
Your task is to simulate a flood damage.
You are given a cross-section diagram (a string). It represents slopes and flatlands by '/', '\' and '_' respectively. For example, the region of the following picture is shown by a raw string r"/\\///\_/\/\\\\/_/\\///__\\\_\\/_\/_/". Notice, that single backslash "\" escapes following character. So to get backslash just as a character without special functionality, you need to escape every needed backslash string with another one or use raw string.
Assume that the rain is falling endlessly and the water overflowing from the region is falling into the sea from both sides. In the following example the rain will...