시간 제한메모리 제한제출정답맞힌 사람정답 비율
5 초 512 MB69353258.182%

문제

You are a landlord who owns a building that is an R x C grid of apartments; each apartment is a unit square cell with four walls. You want to rent out N of these apartments to tenants, with exactly one tenant per apartment, and leave the others empty. Unfortunately, all of your potential tenants are noisy, so whenever any two occupied apartments share a wall (and not just a corner), this will add one point of unhappiness to the building. For example, a 2x2 building in which every apartment is occupied has four walls that are shared by neighboring tenants, and so the building's unhappiness score is 4.

If you place your N tenants optimally, what is the minimum unhappiness value for your building?

입력

The first line of the input gives the number of test cases, TT lines follow; each contains three space-separated integers: RC, and N.

Limits

  • 1 ≤ T ≤ 1000.
  • 0 ≤ N ≤ R*C.
  • 1 ≤ R*C ≤ 10000.

출력

For each test case, output one line containing "Case #x: y", where x is the test case number (starting from 1) and y is the minimum possible unhappiness for the building.

예제 입력 1

4
2 3 6
4 1 2
3 3 8
5 2 0

예제 출력 1

Case #1: 7
Case #2: 0
Case #3: 8
Case #4: 0

힌트

In Case #1, every room is occupied by a tenant and all seven internal walls have tenants on either side.

In Case #2, there are various ways to place the two tenants so that they do not share a wall. One is illustrated below.

In Case #3, the optimal strategy is to place the eight tenants in a ring, leaving the middle apartment unoccupied.

Here are illustrations of sample cases 1-3. Each red wall adds a point of unhappiness.

출처

Contest > Google > Code Jam > Google Code Jam 2015 > Round 1B B2번

채점 및 기타 정보

  • 예제는 채점하지 않는다.