CSES - Datatähti 2016 alku - Results
Submission details
Task:Tontti
Sender:6502
Submission time:2015-09-29 14:13:40 +0300
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.06 s1details
#2ACCEPTED0.06 s1details
#30.06 s1details
#40.04 s1details
#50.05 s1details
#6--2details
#7--2details
#8--2details
#9--2details
#10--2details
#11--3details
#12--3details
#13--3details
#14--3details
#15--3details

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:50:50: warning: 'h' may be used uninitialized in this function [-Wmaybe-uninitialized]
        g += (a[(o+i-s+1)*n+q] - a[(o+i-s+1)*n+w]);
                                                  ^

Code

#include <iostream>
#include <math.h>
#include <stdio.h>
using namespace std;
int main() {
cin.sync_with_stdio(false);
int i, j, n, m, k, x, q, w, o;
int sz, s;
cin >> n >> m >> k;
char input[n][m];
int a[n*m];
int f[n*m];
for (i = 0; i < n; i++)
cin >> input[i];
sz = (int)ceil(sqrt((double)k));
x = 0;
for (i = 0; i < n; i++)
for (j = 0; j < m; j++) {
a[i*n+j] = !(input[i][j]=='.');
f[i*n+j] = 0;
if(k<2)
x += a[i*n+j]^k^1;
}
int c = max(sz,2);
int g, h;
for (s = c; s <= min(n,m); s++) {
//printf("%d ", s);
for (i = s - 1; i < n; i++) {
int d = i*n+s-1;
g = h;
for (j = s - 1; j < m; j++) {
int t = f[d];
if (s == c) {
if (i == j && (i == s - 1)) {
int p = (i - s + 1) * n;
for (q = i - s + 1; q <= i; q++) {
int e = p + j - s + 1;
for (w = j - s + 1; w <= j; w++) {
t += a[e++];
}
p+=n;
}
g = h = f[d] = t;
} else {
q = (j + 1);
w = (j - s + 1);
for (o = 0; o < s; o++) {
g += (a[(o+i-s+1)*n+q] - a[(o+i-s+1)*n+w]);
}
t = f[d] = g;
}
} else {
for (q = 0; q < s - 1; q++) {
t += a[d-s*n+n-q];
t += a[d-q*n-s+1];
}
f[d] = t = (t+a[d-s*n+n-s+1]);
}
if (t == k) x++;
d++;
}
if (s == c && (i + 1) < m) {
q = (i + 1) * n;
w = (i - s + 1) * n;
for (o = 0; o < s; o++) {
h += (a[q+o-s+1] - a[w+o-s+1]);
}
}
}
}
cout << x << "\n";
return 0;
}

Test details

Test 1

Group: 1

Verdict:

input
10 10 1
......*...
.......*..
*..*....*.
*....*....
...

correct output
94

user output
88

Test 2

Group: 1

Verdict: ACCEPTED

input
10 10 5
**********
**********
**********
**********
...

correct output
0

user output
0

Test 3

Group: 1

Verdict:

input
10 10 10
**...*...*
*..*.**.*.
...**.*..*
*...**.*..
...

correct output
4

user output
1

Test 4

Group: 1

Verdict:

input
10 10 5
****......
*.*.**..**
....*.*..*
...*.***..
...

correct output
16

user output
12

Test 5

Group: 1

Verdict:

input
10 10 2
**.***..*.
...*.*....
.***.*...*
***.***..*
...

correct output
30

user output
12

Test 6

Group: 2

Verdict:

input
500 500 1
.................................

correct output
9552040

user output
(empty)

Test 7

Group: 2

Verdict:

input
500 500 5
.................................

correct output
1536063

user output
(empty)

Test 8

Group: 2

Verdict:

input
500 500 25000
**...*...**..*.*..*.**.*..*.*....

correct output
288

user output
(empty)

Test 9

Group: 2

Verdict:

input
500 500 12500
**.**.*..*...*.**...*.***........

correct output
786

user output
(empty)

Test 10

Group: 2

Verdict:

input
500 500 5000
.*.*.**..*.*.**.**..*..**...*....

correct output
1763

user output
(empty)

Test 11

Group: 3

Verdict:

input
2000 2000 1
.................................

correct output
489611392

user output
(empty)

Test 12

Group: 3

Verdict:

input
2000 2000 5
.................................

correct output
120725884

user output
(empty)

Test 13

Group: 3

Verdict:

input
2000 2000 400000
..*..**.**.**.*.***...**.*..**...

correct output
1849

user output
(empty)

Test 14

Group: 3

Verdict:

input
2000 2000 200000
***.*....*.*..*....**..*..*.*....

correct output
2665

user output
(empty)

Test 15

Group: 3

Verdict:

input
2000 2000 80000
**.**...*.***.**....**.*....*....

correct output
5587

user output
(empty)