| Task: | Tontti |
| Sender: | rxz9000 |
| Submission time: | 2015-10-11 21:31:33 +0300 |
| Language: | C++ |
| Status: | READY |
| Result: | 47 |
| group | verdict | score |
|---|---|---|
| #1 | ACCEPTED | 14 |
| #2 | ACCEPTED | 33 |
| #3 | TIME LIMIT EXCEEDED | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.06 s | 1 | details |
| #2 | ACCEPTED | 0.06 s | 1 | details |
| #3 | ACCEPTED | 0.05 s | 1 | details |
| #4 | ACCEPTED | 0.05 s | 1 | details |
| #5 | ACCEPTED | 0.06 s | 1 | details |
| #6 | ACCEPTED | 0.07 s | 2 | details |
| #7 | ACCEPTED | 0.07 s | 2 | details |
| #8 | ACCEPTED | 0.06 s | 2 | details |
| #9 | ACCEPTED | 0.07 s | 2 | details |
| #10 | ACCEPTED | 0.06 s | 2 | details |
| #11 | TIME LIMIT EXCEEDED | -- | 3 | details |
| #12 | ACCEPTED | 0.54 s | 3 | details |
| #13 | ACCEPTED | 0.29 s | 3 | details |
| #14 | ACCEPTED | 0.29 s | 3 | details |
| #15 | ACCEPTED | 0.30 s | 3 | details |
Code
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
int main() {
ios::sync_with_stdio(false);
int height;
cin >> height;
int width;
cin >> width;
int idealAmountOfTrees;
cin >> idealAmountOfTrees;
vector<string> forest;
forest.resize(height);
for (int i = 0; i < height; i++) {
cin >> forest[i];
}
vector<vector<int> > sums;
sums.resize(height + 1);
for (int i = 0; i <= height; i++) {
sums[i].resize(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]
+ (forest[i - 1].at(j - 1) == '*' ? 1 : 0);
}
}
int waysOfChoosing = 0;
for (int i = 0; i < height; i++) {
for (int j = 0; j < width; j++) {
int minSl = 1;
int maxSl = min(height - i, width - j);
while (minSl <= maxSl) {
int midSl = (minSl + maxSl) / 2;
int treesInSquare = sums[i + midSl][j + midSl] - sums[i + midSl][j] - sums[i][j + midSl] + sums[i][j];
if (treesInSquare == idealAmountOfTrees) {
waysOfChoosing++;
int l1 = midSl - 1;
while (l1 >= minSl && (sums[i + l1][j + l1] - sums[i + l1][j] - sums[i][j + l1] + sums[i][j]) == idealAmountOfTrees) {
waysOfChoosing++;
l1--;
}
int l2 = midSl + 1;
while (l2 <= maxSl && (sums[i + l2][j + l2] - sums[i + l2][j] - sums[i][j + l2] + sums[i][j]) == idealAmountOfTrees) {
waysOfChoosing++;
l2++;
}
break;
}
else if (treesInSquare < idealAmountOfTrees) {
minSl = midSl + 1;
}
else {
maxSl = midSl - 1;
}
}
}
}
cout << waysOfChoosing << endl;
return 0;
}Test details
Test 1
Group: 1
Verdict: ACCEPTED
| input |
|---|
| 10 10 1 ......*... .......*.. *..*....*. *....*.... ... |
| correct output |
|---|
| 94 |
| user output |
|---|
| 94 |
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: ACCEPTED
| input |
|---|
| 500 500 1 ................................. |
| correct output |
|---|
| 9552040 |
| user output |
|---|
| 9552040 |
Test 7
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 500 500 5 ................................. |
| correct output |
|---|
| 1536063 |
| user output |
|---|
| 1536063 |
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: ACCEPTED
| input |
|---|
| 2000 2000 5 ................................. |
| correct output |
|---|
| 120725884 |
| user output |
|---|
| 120725884 |
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 |
