BAC - Bacterial

no tags 

In the biology laboratory we are observing several bacterial samples, and under the microscope we have them shaded with different colors to see them expanding their territory on the plate.

It is interesting to know that the bacterial are quite 'friendly' that once they meet each other, they do not expand into each other's occupation any more. The bacterial samples are expanding at similar speeds and we take them as the same speed.

Since the experiment is tedious and lengthy (Oh My God! there are several thousand samples at our pick), we are going to run a simulation based on this reality, taking the variable that these samples may be planted in different starting spots.

We are using rectangular plates and bacterial racing is bounded within the plate.

Input format

There are multiple test cases (about 20000 of them) each taking the following format:

  • one line with two integers between 1 and 1000 inclusive indicating width and height of the plate
  • one line with one integer between 1 and 100 inclusive indicating the number of bacterial samples
  • for each bacterial sample there is one line with two integers indicating the sample's position:
    x y, where x, y specify a position within or on the bound of the plate.

The plate lies in such a coordinating system that the lower-left corner of it is (0,0) and the upper-right corner is (width,height).

A test with zero plate area marks the end of the tests and this one shall not be processed.

Between each input block there is a blank line.

Output format

Generate a report having the samples sorted on their domination, with each line taking the following format:
<sample id> <area occupation>
where: 'sample id' takes 3 columns right justified, with '0' padded to the left as necessary, and 'area occupation' takes 14 columns with 2 digit precision, right justified.

The sample occupying more area shall be reported prior to those occupying less. The input data will ensure enough difference in areas to avoid ambiguity.

Between each output block there shall be a blank line.

Example

Sample input:

10 10
2
5 5
0 0

0 0

Sample output:

001         87.50
002         12.50

Warning: large Input/Output data, be careful with certain languages

hide comments
rush_e123123: 2022-10-09 16:21:21

omfg'


Added by:Neal Zane
Date:2004-06-08
Time limit:1.631s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: NODEJS PERL6 VB.NET
Resource:Neal Zane