Why Did the Cow Cross the Road III (Silver)
Why did the cow cross the road? Well, one reason is that Farmer John's farm simply has a lot of roads, making it impossible for his cows to travel around without crossing many of them.
FJ's farm is arranged as an n * n square grid of fields, Certain pairs of adjacent fields (e.g., north-south or east-west) are separated by roads, and a tall fence runs around the external perimeter of the entire grid, preventing cows from leaving the farm. Cows can move freely from any field to any other adjacent field (north, east, south, or west), although they prefer not to cross roads unless absolutely necessary.
There are k cows on FJ's farm, each located in a different field. A pair of cows is said to be "distant" if, in order for one cow to visit the other, it is necessary to cross at least one road. Please help FJ count the number of distant pairs of cows.
Input
The first line contains n (2 ≤ n ≤ 100), k (1 ≤ k ≤ 100, k ≤ n^2
) and r. The next r lines describe r roads that exist between pairs of adjacent fields. Each line is of the form r c r′ c′ (integers in the range 1 .. n), indicating a road between the field in (row r, column c) and the adjacent field in (row r′, column c′). The final k lines indicate the locations of the k cows, each specified in terms of a row and column.
Output
Print the number of pairs of cows that are distant.