[Solution] Parcels Kick Start Solution
You have been hired recently as the Chief Decision Maker (CDM) at a famous parcel delivery company, congratulations! Customers love speedy deliveries of their parcels and you have decided to decrease the time it takes to deliver parcels around the world to win customers. You have introduced this idea to the authorities and they have allocated you enough budget to build at most one new delivery office.
The world can be divided into an grid of squares. Each square either contains a delivery office or is empty. You may pick a grid square that does not already contain a delivery office and build a new delivery office there.
The delivery time of a parcel to a square is if that square contains a delivery office. Otherwise, it is defined as the minimum Manhattan distance between that square and any other square containing a delivery office. The overall delivery time is the maximum of delivery times of all the squares. What is the minimum overall delivery time you can obtain by building at most one new delivery office?
Note: The Manhattan distance between two squares and is defined as , where denotes the absolute value of .
Input
The first line of the input gives the number of test cases, . test cases follow. The first line of each test case contains the number of rows and number of columns of the grid. Each of the next
lines contains a string of characters, where each character is either or . denotes the absence of a delivery office and denotes the presence of a delivery office in that square.
Output
For each test case, output one line containing Case #:
, where is the test case number (starting from 1) and is the minimum overall delivery time you can obtain after adding at most one additional delivery office.
Limits
Time limit: 15 seconds.
Memory limit: 1 GB.
.
There is at least one delivery office in the initial grid.
Test Set 1
.
.
Test Set 2
.
.
No comments:
Post a Comment