시간 제한 | 메모리 제한 | 제출 | 정답 | 맞힌 사람 | 정답 비율 |
---|---|---|---|---|---|
5 초 | 512 MB | 4 | 4 | 4 | 100.000% |
Your task in this problem is to find out the minimum number of stones needed to place on an N-by-M rectangular grid (N horizontal line segments and M vertical line segments) to enclose at least K intersection points. An intersection point is enclosed if either of the following conditions is true:
For example, to enclose 8 points on a 4x5 grid, we need at least 6 stones. One of many valid stone layouts is shown below. Enclosed points are marked with an "x".
The first line of the input gives the number of test cases, T. T lines follow. Each test case is a line of three integers: N M K.
Limits
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 number of stones needed.
2 4 5 8 3 5 11
Case #1: 6 Case #2: 8
Contest > Google > Code Jam > Google Code Jam 2014 > Round 1C C2번