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

建议使用的浏览器:

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

1359:As the Crow Flies

题目描述


As president of a startup airline company, you have started a frequent flier program that rewards customers for every mile they travel. As a for-profit company, you have a vested interest in minimizing the number of frequent flier miles that a person can earn on any one trip. To get an idea of how many miles a customer could earn flying the existing network, you've decided to write a program.

Assumptions:

  • A passenger's itinerary is one-way (no return flight).

  • Every itinerary takes the shortest route from the departing city to the destination city.

  • Frequent flier miles are counted "as the crow flies" (i.e., the shortest route across the earth's surface that connects the cities along the route).

  • The earth's surface is a perfect sphere with radius 4000 miles.

输入解释
The first line contains a single integer n indicating the number of data sets. Each data set will be formatted according to the following description:

A single data set has 3 components:

1. Header Line - A single line, "X Y", where X is the number of cities and Y is the number of flight legs in the airline's network. Both will be positive integers less than 100.
2. City List - A list of cities and their locations, one city per line. The line will be of the format

   "C LA NS LO EW" where:

  • C is the name of the city (no spaces, alphabetical, first letter only upper case)

  • LA is the degrees of latitude where the city is located (from 0 to 90)

  • NS is the direction of latitude ('N'orth or 'S'outh of the equator)

  • LO is the degrees of longitude where the city is located (from 0 to 180)

  • EW is the direction of longitude ('E'ast or 'W'est of the prime meridian)


3. Flight List - A list of city pairs of the format "B C" representing different cities that are directly connected by flight legs, one pair per line. Note that "B C" is equivalent to "C B".

Note:

  • Some longitude measurements can be represented in multiple ways (i.e., 180E = 180W)

  • All degrees of latitude and longitude given in the input will be integers.

  • The airline's network is connected (i.e., there is at least one route between any two cities).
输出解释
For each data set, output the two cities that are farthest from each other (farthest in the sense that the shortest route between them is the longest of any city pair). You are guaranteed that there will be no ties. Display the city names on the same line, separated by a single space, sorted in dictionary order.
输入样例
2
6 5
Northpole 90 N 87 E
Southpole 90 S 180 W
Equatorone 0 N 45 W
Equatortwo 0 S 90 E
Equatorthree 0 S 180 E
Equatorfour 0 N 46 W
Equatorone Equatortwo
Equatortwo Equatorthree
Equatorthree Equatorfour
Northpole Equatortwo
Southpole Equatorthree
2 1
Northpole 90 N 0 E
Southpole 90 S 0 W
Southpole Northpole
输出样例
Equatorfour Equatorone
Northpole Southpole
来自杭电HDUOJ的附加信息
Recommend JGShining

该题目是Virtual Judge题目,来自 杭电HDUOJ

源链接: HDU-1359

最后修改于 2020-10-25T22:44:16+00:00 由爬虫自动更新

共提交 0

通过率 --%
时间上限 内存上限
2000/1000MS(Java/Others) 65536/32768K(Java/Others)