Datasets:

Modalities:
Image
Text
Formats:
parquet
Size:
< 1K
Tags:
code
Libraries:
Datasets
pandas
License:
File size: 3,906 Bytes
7acee6b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
Wilson has had quite enough of his job driving trucks for a moving company,
and is now interested in carrying out different sorts of deliveries — namely,
pizza pie deliveries! Unfortunately, his local pizzeria already has a full-
time driver, Mario Crosta, but Wilson has devised a devious plan to sabotage
Mario, hopefully resulting in him getting fired and Wilson taking over.

The pizzeria is located in a town which can be modeled as a grid of cells with
**N** rows and **M** columns, with each cell representing an intersection.
There are at least two intersections (in other words, **N** * **M** ≥ 2). It's
possible to drive from a given intersection to any adjacent intersection
(directly up, down, left, or right) in 1 minute. It's not possible to leave
the grid.

The pizzeria is located at the top-left intersection, and Wilson is planning
on placing an order for pizza to be delivered to the bottom-right
intersection. Due to the paramount importance of pizza arriving while it's
still hot, this pizzeria guarantees that their deliveries will always arrive
within at most **N** \+ **M** \- 2 minutes (or the customer will get their
money back and also the driver will be immediately fired). Ordinarily, this is
just enough time to reach even the bottom-right corner of the town, but Wilson
intends to make this not an ordinary delivery.

Before placing his order, Wilson will pull some strings and arrange to have
some of the intersections blocked off. In particular, he can shut down an
entire axis-aligned **K**x**K** square of intersections all at once. He can
even choose multiple such squares, as long as all of them lie entirely within
the grid, none of them overlap with one another, and none of them include the
top-left or bottom-right intersections. When he's done, Mario will be unable
to pass through any intersection which is part of any of the squares.

Wilson doesn't want to block off so many intersections that Mario will be
unable to complete his delivery at all, as that would likely be too obvious.
Instead, he wants to make sure that the delivery is still possible but is
forced to take longer than **N** \+ **M** \- 2 minutes, resulting in Mario
losing his job.

Despite his vast network of connections with corrupt government officials,
shutting down each square of intersections will still cost Wilson a fair sum
of money, so he'd like to successfully complete his sabotage by blocking off
as few squares as possible. Unfortunately, it also might be the case that no
possible set of squares can result in Mario's delivery taking too long without
making the delivery impossible.

On the 8x8 grid below, for example, if Wilson blocks off six 2x2 squares of
intersections as shown (in black), the shortest possible delivery route from
the pizzeria to the bottom-right intersection (in red) will take 22 minutes,
which is longer than 8 + 8 - 2 = 14 minutes. However, note that this solution
is not optimal.

![]({{PHOTO_ID:261299628624564}})

### Input

Input begins with an integer **T**, the number of different pizzerias Wilson
wants to work for. For each pizzeria, there is a single line containing the
three space-separated integers, **N**, **M**, and **K**.

### Output

For the _i_th truck, print a line containing "Case #**i**: " followed by the
minimum number of blocked-off squares required for Wilson to successfully
sabotage Mario (or -1 if it can't be done).

### Constraints

1 ≤ **T** ≤ 10,000  
1 ≤ **N**, **M**, **K** ≤ 800,000  

### Explanation of Sample

In the first case, if both the top-right and bottom-left intersections are
blocked off, then the bottom-right corner will be unreachable from the
pizzeria, which is no good. If only one of those cells is blocked off, then
Mario can proceed through the other one, managing to still complete his
delivery in 2 + 2 - 2 = 2 minutes. Therefore Wilson has no way to sabotage him
successfully.