CSES - Datatähti 2016 alku - Results
Submission details
Task:Tontti
Sender:Kuha
Submission time:2015-09-29 17:45:52 +0300
Language:C++
Status:READY
Result:100
Feedback
groupverdictscore
#1ACCEPTED14
#2ACCEPTED33
#3ACCEPTED53
Test results
testverdicttimegroup
#1ACCEPTED0.05 s1details
#2ACCEPTED0.06 s1details
#3ACCEPTED0.05 s1details
#4ACCEPTED0.06 s1details
#5ACCEPTED0.05 s1details
#6ACCEPTED0.08 s2details
#7ACCEPTED0.07 s2details
#8ACCEPTED0.07 s2details
#9ACCEPTED0.07 s2details
#10ACCEPTED0.07 s2details
#11ACCEPTED0.82 s3details
#12ACCEPTED0.82 s3details
#13ACCEPTED0.58 s3details
#14ACCEPTED0.63 s3details
#15ACCEPTED0.63 s3details

Code

#include <iostream>
#include <algorithm>
#include <queue>
#include <stack>
#include <string>
#define INF 999999999
#define ll long long
using namespace std;

int main()
{
    int n, m, tr;
    cin>>n>>m>>tr;

    char c[n][m];
    int v[n][m][2];

    for (int y = 0; y < n; y++) {
        for (int x = 0; x < m; x++) {
            cin>>c[y][x];
            v[y][x][0] = 0;
            if (x > 0) v[y][x][0] = v[y][x - 1][0];
            if (c[y][x] == '*') v[y][x][0]++;
            v[y][x][1] = v[y][x][0];
            if (y > 0) v[y][x][1] += v[y - 1][x][1];
        }
    }
    int ans = 0;
    for (int y = 0; y < n; y++) {
        for (int x = 0; x < m; x++) {
            int i = 0;
            int mi = -1;
            int mx = -1;
            int mini = min(m - x, n - y); // BINÄÄRIHAKU!
            bool tf = false;
            i = 0;
            for (int t = mini / 2; t >= 0; t /= 2) {
                bool b = true;

                while (b && i + t < mini) {
                    i += t;
                    b = true;
                    int w = v[y+i][x+i][1];
                    if (x > 0 && y > 0) w += v[y-1][x-1][1];
                    if (x > 0) w -= v[y+i][x-1][1];
                    if (y > 0) w -= v[y-1][x+i][1];
                    if (w > tr) b = false;
                    else if (w == tr) {
                        b = false;
                        tf = true;
                    }
                    //if (b) cout<<w<<" "<<i<<" too big!"<<endl;
                    //else cout<<w<<" "<<i<<" secondary!"<<endl;
                    if (b) mi = i;
                    else i -= t;
                    if (t == 0) break;
                }
                if (t == 0) break;
            }
            if (!tf) continue;
            i = 0;
            for (int t = mini / 2; t >= 0; t /= 2) {
                bool b = true;

                while (b && i + t < mini) {
                    i += t;
                    b = true;
                    int w = v[y+i][x+i][1];
                    if (x > 0 && y > 0) w += v[y-1][x-1][1];
                    if (x > 0) w -= v[y+i][x-1][1];
                    if (y > 0) w -= v[y-1][x+i][1];
                    if (w > tr) b = false;
                    if (b) mx = i;
                    else i -= t;
                    if (t == 0) break;
                }
                if (t == 0) break;
            }

            //cout<<x<<" "<<y<<" "<<mi<<" "<<mx<<endl;
            if (tf) ans += mx - mi;
        }
    }

    cout<<ans<<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: ACCEPTED

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

correct output
489611392

user output
489611392

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