当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。

建议使用的浏览器:

谷歌Chrome 火狐Firefox Opera浏览器 微软Edge浏览器 QQ浏览器 360浏览器 傲游浏览器

3023: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 X and Y coordinates for the front and rear points of all submarines. The Russian intelligence has in addition provided data for all islands in the Swedish waters. With this information, and with a lot of help from simulations using GPS equipped minks, Russian programmers have been able to develop a program that, from the information given, tells the user if a submarine is
  1. Still in water
  2. Partially on land
  3. Entirely on land

输入解释
First you will get the number of submarines that are present in the area. [1..100]
After that, for each submarine, you will get the X and Y positions first for the submarines front and then for its rear. [-1000..1000] Then you will get the number of islands in the area. [1..50]
After that, for each island you will get the following: The number of points of the polygon that represents the island. [3..20], The X and Y positions of the points. [-1000..1000]
All input are integers. No submarine end point will be on an island edge. No submarine will lie on an island edge. All islands are simple polygons without crossing edges or touching borders. The first point of the island is connected to the last point. All submarines are approximated with a line between the front and rear points. Two islands never overlap or touch each other.
输出解释
Output contains information about every submarine, in order.
If the submarine is all in water, print “Submarine X is still in water.”
If the submarine is all on land, print “Submarine X is completely on land.”
If the submarine is partially in water and partially on land, print “Submarine X is partially on land.”
X is the submarine’s number (1,2,3,...) according to it’s order in the input file.
输入样例
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.

该题目是Virtual Judge题目,来自 北京大学POJ

源链接: POJ-3023

最后修改于 2020-10-29T06:50:25+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
1000 65536