#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 NN farms (2N40,000)(2 \leq N \leq 40,000), usually numbered/labeled 1N1 \cdots N. A series of M(1M<40,000)M (1 \leq M < 40,000) vertical and horizontal roads each of varying lengths (1length1000)(1 \leq length \leq 1000) connect the farms. A map of these farms might look something like the illustration below in which farms are labeled F1F7F1 \cdots F7 for clarity and lengths between connected farms are shown as (n)(n):

           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 11: Two space-separated integers: NN and MM

  • Lines 2M+12 \cdots M+1: Each line contains four space-separated entities, F1,F2,L,F1, F2, L, and DD that describe a road. F1F1 and F2F2 are numbers of two farms connected by a road, LL is its length, and DD is a character that is either N, E, S, or W giving the direction of the road from F1F1 to F2F2.

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 22 via roads 4,1,64, 1, 6 and 33 to farm 55 and is of length 20+3+13+9+7=5220+3+13+9+7=52.

Resources

USACO 2004 February