2009 Canadian Computing Competition, Stage 1

Problem S5: Wireless

Bob is sitting at home with his computer. He would like to experience more social interaction, so he is planning a trip to a coffee shop with his computer.

Bob has lots of data about wireless networks and coffee shops in the city. In Bob's city, there is one coffee shop at every intersection of streets. Specifically, Bob happens to live in a city with M streets (1 ≤ M ≤ 30,000) that run east and west, and N streets (1 ≤ N ≤ 1,000) that run north and south. As an added benefit, the distance between consecutive parallel streets is 1 metre (it is a very compact city).

It also turns out that inside K (1 ≤ K ≤ 1,000) of the coffee shops, there is a wireless network station. Each wireless network station will have a particular bitrate B (1 ≤ B ≤ 1,000) and can reach R metres (1 ≤ R ≤ 30,000) from the coffee shop. In other words, a wireless network station from one coffee shop forms a circle with radius R centered at that particular coffee shop. Moreover, if someone is at distance R, the wireless network would be available, but if someone is at a distance larger than R, they cannot access that wireless point.

You can assume that each coffee shop has at most one wireless network stationed in it, but that multiple wireless networks may be available while sitting in that one coffee shop, due to the proximity of other wireless network stations.

Bob has a special device in his computer that can use all of the available bitrates of as many wireless networks as he can connect to.

Bob would like to find out the maximum bitrate he can obtain, and how many coffee shops would have that maximum capacity.

Input

On the first line of input, you will be given the integer M, the number of east-west streets.
On the second line of input, you will be given the integer N, the number of north-south streets.
On the third line of input, you will be given the integer K, the number of coffee shops with a wireless network. On the next K lines, you will have 4 integers per line.

The first integer x on each line represents the north-south street on which the coffee shop is located, where 1 ≤ x ≤ N. The second integer, y, on each line represents the east-west street on which the coffee shop is located, where 1 ≤ y ≤ M. The third integer, R, on each line represents the radius of the wireless network from this particular coffee shop. The fourth integer, B, on each line represents the bitrate of the wireless network from this particular coffee shop.

Output

The output will be two lines long. The first line of output will be the integer representing the maximum bitrate that can be obtained over all coffee shops. The second line of output will be the number of coffee shops where this maximum bitrate can be obtained.

Sample Input

3
5
3
1 3 2 5
3 1 2 7
5 1 1 5

Sample Output

12
5

Explanation

In the figure below, notice that the five coffee shops/intersections marked with a dark circle have total bitrates of 12.

All Submissions
Best Solutions


Point Value: 20 (partial)
Time Limit: 2.00s
Memory Limit: 256M
Added: May 13, 2009

Languages Allowed:
C++03, PAS, C, HASK, ASM, RUBY, PYTH2, JAVA, PHP, SCM, CAML, PERL, C#, C++11, PYTH3

Comments (Search)

Aren't the circles supposed to be centered at the coffee shops?
I don't see any circle centered at (1, 3), (3, 1), or (5, 1).
Maybe I understood the question wrong?

http://prntscr.com/ge9wwv

Oh, thanks! Silly of me...

In the sample input, aren't we given the number of rows first, and the number of columns after? Which is contradicting the problem statement, which says you get the columns and then the rows.

Yes, it's rows first, columns second.

The problem statement says that the number of east-west streets comes first. An east-west street is a horizontal line in the diagram, hence, a row. There is no contradiction, but I agree, it is confusing.