#Lutece0255. Cow Marathon
Cow Marathon
Migrated from Lutece 255 Cow Marathon
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
Farmer John's pastoral neighborhood has farms , usually numbered/labeled . A series of vertical and horizontal roads each of varying lengths connect the farms. A map of these farms might look something like the illustration below in which farms are labeled for clarity and lengths between connected farms are shown as :
F1 --- (13) ---- F6 --- (9) ----- F3
| |
(3) |
| (7)
F4 --- (20) -------- F2 |
| |
(2) F5
|
F7
Being an ASCII diagram, it is not precisely to scale, of course.
Each farm can connect directly to at most four other farms via roads that lead exactly north, south, east, and/or west. Moreover, farms are only located at the endpoints of roads, and some farm can be found at every endpoint of every road. No two roads cross, and precisely one path(sequence of roads) links every pair of farms.
After hearing about the epidemic of obesity in the USA, Farmer John wants his cows to get more exercise, so he has committed to create a bovine marathon for his cows to run. The marathon route will include a pair of farms and a path comprised of a sequence of roads between them. Since FJ wants the cows to get as much exercise as possible he wants to find the two farms on his map that are the farthest apart from each other (distance being measured in terms of total length of road on the path between the two farms). Help him determine the distances between this farthest pair of farms.
Input
-
Line : Two space-separated integers: and
-
Lines : Each line contains four space-separated entities, and that describe a road. and are numbers of two farms connected by a road, is its length, and is a character that is either
N
,E
,S
, orW
giving the direction of the road from to .
Output
Line $14: An integer giving the distance between the farthest pair of farms.
Samples
7 6
1 6 13 E
6 3 9 E
3 5 7 S
4 1 3 N
2 4 20 W
4 7 2 S
52
Note
The longest marathon runs from farm via roads and to farm and is of length .
Resources
USACO 2004 February