| Task: | Tontti |
| Sender: | rxz9000 |
| Submission time: | 2015-10-11 19:17:14 +0300 |
| Language: | Java |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | WRONG ANSWER | 0 |
| #3 | TIME LIMIT EXCEEDED | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | WRONG ANSWER | 0.19 s | 1 | details |
| #2 | ACCEPTED | 0.18 s | 1 | details |
| #3 | ACCEPTED | 0.18 s | 1 | details |
| #4 | ACCEPTED | 0.17 s | 1 | details |
| #5 | ACCEPTED | 0.18 s | 1 | details |
| #6 | WRONG ANSWER | 0.32 s | 2 | details |
| #7 | WRONG ANSWER | 0.31 s | 2 | details |
| #8 | ACCEPTED | 0.29 s | 2 | details |
| #9 | ACCEPTED | 0.28 s | 2 | details |
| #10 | ACCEPTED | 0.27 s | 2 | details |
| #11 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #12 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #13 | ACCEPTED | 0.66 s | 3 | details |
| #14 | ACCEPTED | 0.68 s | 3 | details |
| #15 | ACCEPTED | 0.64 s | 3 | details |
Code
public class TonttiTehtava {
private static int treesInSquare(int[][] sums, int i, int j, int sidelength) {
return sums[i + sidelength][j + sidelength]
- sums[i + sidelength][j]
- sums[i][j + sidelength]
+ sums[i][j];
}
public static void main(String[] args) {
IO io = new IO();
int height = io.nextInt();
int width = io.nextInt();
int idealAmountOfTrees = io.nextInt();
String[] rows = new String[height];
for (int i = 0; i < height; i++) {
rows[i] = io.next();
}
int[][] sums = new int[height + 1][width + 1];
for (int i = 0; i <= height; i++) {
sums[i][0] = 0;
}
for (int j = 1; j <= width; j++) {
sums[0][j] = 0;
}
for (int i = 1; i <= height; i++) {
for (int j = 1; j <= width; j++) {
sums[i][j] = sums[i - 1][j] - sums[i - 1][j - 1] + sums[i][j - 1]
+ (rows[i - 1].charAt(j - 1) == '*' ? 1 : 0); // sums is offset by 1 remember.
}
}
int waysOfChoosing = 0;
for (int i = 0; i < height; i++) {
for (int j = 0; j < width; j++) {
int minSidelength = 1;
int maxSidelength = Math.min(height - i, width - j);
while (minSidelength <= maxSidelength) {
int midpoint = (minSidelength + maxSidelength) / 2;
int treesInSquare = treesInSquare(sums, i, j, midpoint);
if (treesInSquare == idealAmountOfTrees) {
waysOfChoosing++;
int length1 = midpoint - 1;
while (length1 > minSidelength && treesInSquare(sums, i, j, length1) == idealAmountOfTrees) {
waysOfChoosing++;
length1--;
}
int length2 = midpoint + 1;
while (length2 < maxSidelength && treesInSquare(sums, i, j, length2) == idealAmountOfTrees) {
waysOfChoosing++;
length2++;
}
break;
} else if (treesInSquare < idealAmountOfTrees) {
minSidelength = midpoint + 1;
} else if (treesInSquare > idealAmountOfTrees) {
maxSidelength = midpoint - 1;
}
}
}
}
io.println(waysOfChoosing);
io.close();
}
}Test details
Test 1
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 10 10 1 ......*... .......*.. *..*....*. *....*.... ... |
| correct output |
|---|
| 94 |
| user output |
|---|
| 70 |
Test 2
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 10 10 5 ********** ********** ********** ********** ... |
| correct output |
|---|
| 0 |
| user output |
|---|
| 0 |
Test 3
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 10 10 10 **...*...* *..*.**.*. ...**.*..* *...**.*.. ... |
| correct output |
|---|
| 4 |
| user output |
|---|
| 4 |
Test 4
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 10 10 5 ****...... *.*.**..** ....*.*..* ...*.***.. ... |
| correct output |
|---|
| 16 |
| user output |
|---|
| 16 |
Test 5
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 10 10 2 **.***..*. ...*.*.... .***.*...* ***.***..* ... |
| correct output |
|---|
| 30 |
| user output |
|---|
| 30 |
Test 6
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 500 500 1 ................................. |
| correct output |
|---|
| 9552040 |
| user output |
|---|
| 9489885 |
Test 7
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 500 500 5 ................................. |
| correct output |
|---|
| 1536063 |
| user output |
|---|
| 1503361 |
Test 8
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 500 500 25000 **...*...**..*.*..*.**.*..*.*.... |
| correct output |
|---|
| 288 |
| user output |
|---|
| 288 |
Test 9
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 500 500 12500 **.**.*..*...*.**...*.***........ |
| correct output |
|---|
| 786 |
| user output |
|---|
| 786 |
Test 10
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 500 500 5000 .*.*.**..*.*.**.**..*..**...*.... |
| correct output |
|---|
| 1763 |
| user output |
|---|
| 1763 |
Test 11
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 2000 2000 1 ................................. |
| correct output |
|---|
| 489611392 |
| user output |
|---|
| (empty) |
Test 12
Group: 3
Verdict: TIME LIMIT EXCEEDED
| input |
|---|
| 2000 2000 5 ................................. |
| correct output |
|---|
| 120725884 |
| user output |
|---|
| (empty) |
Test 13
Group: 3
Verdict: ACCEPTED
| input |
|---|
| 2000 2000 400000 ..*..**.**.**.*.***...**.*..**... |
| correct output |
|---|
| 1849 |
| user output |
|---|
| 1849 |
Test 14
Group: 3
Verdict: ACCEPTED
| input |
|---|
| 2000 2000 200000 ***.*....*.*..*....**..*..*.*.... |
| correct output |
|---|
| 2665 |
| user output |
|---|
| 2665 |
Test 15
Group: 3
Verdict: ACCEPTED
| input |
|---|
| 2000 2000 80000 **.**...*.***.**....**.*....*.... |
| correct output |
|---|
| 5587 |
| user output |
|---|
| 5587 |
