Problem E
Submarines
The Russian navy has, as you probably know, had some problems with their submarines in Swedish waters. These problems are very embarrassing for the Russian military, who has decided to do something about it.
As a first step in their plan, they want to construct a program for their centre of command to be able to locate their submarines.
From GPSes (Global Positioning Systems) they are able to get
-
Still in water
-
Partially on land
-
Entirely on land
The points along the boundaries of the islands are considered to be simultaneously land and water.
![\includegraphics[width=0.5\textwidth ]{submarines-fig}](/problems/submarines/file/statement/en/img-0001.png)
Input
The input consists of:
-
A line with an integer
, the number of submarines that are present in the area. -
For each submarine, a line with the
and positions first for the submarine’s front and then for its rear. -
A line with an integer
, the number of islands in the area. -
For each island:
-
A line with an integer
, the number of points of the polygon that represents the island. -
For each point, a line with the
and positions of the point.
-
All points in the input have coordinates with absolute value
bounded by
Output
Output contains information about every submarine, in order.
-
If the submarine is all in water, print “Submarine
is still in water.” -
If the submarine is all on land, print “Submarine
is completely on land.” -
If the submarine is partially in water and partially on land, print “Submarine
is partially on land.”
Sample Input 1 | Sample Output 1 |
---|---|
5 11 11 9 9 0 0 4 0 0 1 10 1 0 6 6 0 0 -10 0 -9 2 4 -5 -5 5 -5 5 5 -5 5 3 -2 -8 -1 -9 -2 -10 |
Submarine 1 is still in water. Submarine 2 is completely on land. Submarine 3 is partially on land. Submarine 4 is partially on land. Submarine 5 is still in water. |
Sample Input 2 | Sample Output 2 |
---|---|
2 5 0 5 -1 5 10 5 9 1 4 0 0 0 10 10 10 10 0 |
Submarine 1 is partially on land. Submarine 2 is partially on land. |