Task: | Tontti |
Sender: | 6502 |
Submission time: | 2015-09-29 14:13:40 +0300 |
Language: | C++ |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
#2 | TIME LIMIT EXCEEDED | 0 |
#3 | TIME LIMIT EXCEEDED | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | WRONG ANSWER | 0.06 s | 1 | details |
#2 | ACCEPTED | 0.06 s | 1 | details |
#3 | WRONG ANSWER | 0.06 s | 1 | details |
#4 | WRONG ANSWER | 0.04 s | 1 | details |
#5 | WRONG ANSWER | 0.05 s | 1 | details |
#6 | TIME LIMIT EXCEEDED | -- | 2 | details |
#7 | TIME LIMIT EXCEEDED | -- | 2 | details |
#8 | TIME LIMIT EXCEEDED | -- | 2 | details |
#9 | TIME LIMIT EXCEEDED | -- | 2 | details |
#10 | TIME LIMIT EXCEEDED | -- | 2 | details |
#11 | TIME LIMIT EXCEEDED | -- | 3 | details |
#12 | TIME LIMIT EXCEEDED | -- | 3 | details |
#13 | TIME LIMIT EXCEEDED | -- | 3 | details |
#14 | TIME LIMIT EXCEEDED | -- | 3 | details |
#15 | TIME LIMIT EXCEEDED | -- | 3 | details |
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: WRONG ANSWER
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: WRONG ANSWER
input |
---|
10 10 10 **...*...* *..*.**.*. ...**.*..* *...**.*.. ... |
correct output |
---|
4 |
user output |
---|
1 |
Test 4
Group: 1
Verdict: WRONG ANSWER
input |
---|
10 10 5 ****...... *.*.**..** ....*.*..* ...*.***.. ... |
correct output |
---|
16 |
user output |
---|
12 |
Test 5
Group: 1
Verdict: WRONG ANSWER
input |
---|
10 10 2 **.***..*. ...*.*.... .***.*...* ***.***..* ... |
correct output |
---|
30 |
user output |
---|
12 |
Test 6
Group: 2
Verdict: TIME LIMIT EXCEEDED
input |
---|
500 500 1 ................................. |
correct output |
---|
9552040 |
user output |
---|
(empty) |
Test 7
Group: 2
Verdict: TIME LIMIT EXCEEDED
input |
---|
500 500 5 ................................. |
correct output |
---|
1536063 |
user output |
---|
(empty) |
Test 8
Group: 2
Verdict: TIME LIMIT EXCEEDED
input |
---|
500 500 25000 **...*...**..*.*..*.**.*..*.*.... |
correct output |
---|
288 |
user output |
---|
(empty) |
Test 9
Group: 2
Verdict: TIME LIMIT EXCEEDED
input |
---|
500 500 12500 **.**.*..*...*.**...*.***........ |
correct output |
---|
786 |
user output |
---|
(empty) |
Test 10
Group: 2
Verdict: TIME LIMIT EXCEEDED
input |
---|
500 500 5000 .*.*.**..*.*.**.**..*..**...*.... |
correct output |
---|
1763 |
user output |
---|
(empty) |
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: TIME LIMIT EXCEEDED
input |
---|
2000 2000 400000 ..*..**.**.**.*.***...**.*..**... |
correct output |
---|
1849 |
user output |
---|
(empty) |
Test 14
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
2000 2000 200000 ***.*....*.*..*....**..*..*.*.... |
correct output |
---|
2665 |
user output |
---|
(empty) |
Test 15
Group: 3
Verdict: TIME LIMIT EXCEEDED
input |
---|
2000 2000 80000 **.**...*.***.**....**.*....*.... |
correct output |
---|
5587 |
user output |
---|
(empty) |