CodeForces 253D Table with Letters - 2

Description

input
input.txt
output
output.txt

Vasya has recently started to learn English. Now he needs to remember how to write English letters. He isn't sure about some of them, so he decided to train a little.

He found a sheet of squared paper and began writing arbitrary English letters there. In the end Vasya wrote n lines containing mcharacters each. Thus, he got a rectangular n × m table, each cell of the table contained some English letter. Let's number the table rows from top to bottom with integers from 1 to n, and columns — from left to right with integers from 1 to m.

After that Vasya looked at the resulting rectangular table and wondered, how many subtables are there, that matches both following conditions:

  • the subtable contains at most k cells with "a" letter;
  • all letters, located in all four corner cells of the subtable, are equal.

Formally, a subtable's definition is as follows. It is defined by four integers x1, y1, x2, y2 such that 1 ≤ x1 < x2 ≤ n1 ≤ y1 < y2 ≤ m. Then the subtable contains all such cells (x, y) (x is the row number, y is the column number), for which the following inequality holds x1 ≤ x ≤ x2, y1 ≤ y ≤ y2. The corner cells of the table are cells (x1, y1)(x1, y2)(x2, y1)(x2, y2).

Vasya is already too tired after he's been writing letters to a piece of paper. That's why he asks you to count the value he is interested in.

Input

The first line contains three integers n, m, k(2 ≤ n, m ≤ 400; 0 ≤ k ≤ n·m).

Next n lines contain m characters each — the given table. Each character of the table is a lowercase English letter.

Output

Print a single integer — the number of required subtables.

Sample Input

Input
3 4 4
aabb
baab
baab
Output
2
Input
4 5 1
ababa
ccaca
ccacb
cbabc
Output
1

Hint

There are two suitable subtables in the first sample: the first one's upper left corner is cell (2, 2) and lower right corner is cell (3, 3), the second one's upper left corner is cell (2, 1) and lower right corner is cell (3, 4).



题意:输入N*M的字符矩阵,求符合要求的子矩阵的个数,子矩阵要求四个角的字符相同且矩阵中‘a’的数量不大于k。

题解:预处理a的个数,储存字符相同的位置,暴力扫。



#include<stdio.h>
#include<queue>
#include<cstring>
#include<iostream>
#include<cmath>
#include<algorithm>
#include<assert.h>
#include<stdlib.h>
#include<time.h>
#include<stack>
#include<vector>
#include<map>
#include<set>
#include<fstream>
#define pi acos(-1.0)
#define INF 0x3f3f3f3f
#define debug printf("---------------\n");
using namespace std;

int main()
{
    freopen("input.txt", "r", stdin);
    freopen("output.txt", "w", stdout);
    int n,m,k;
    char s[405][405];
    int numa[405][405];
    int cnt[30];
    int event[30][405];
    scanf("%d%d%d",&n,&m,&k);
    for(int i=0;i<n;i++)
    {
        scanf("%s",s[i]);
    }
    long long res=0;
    memset(numa,0,sizeof(numa));
    for(int i=0;i<n;i++)
    {
        for(int j=0;j<m;j++)
        {
            int have=0;
            if(s[i][j]=='a')
            {
                have=1;
            }
            numa[i+1][j+1]=numa[i][j+1]+numa[i+1][j]-numa[i][j]+have;
        }
    }
    for(int i=0;i<m;i++)
    {
        for(int j=i+1;j<m;j++)
        {
            memset(cnt,0,sizeof(cnt));
            for(int y=0;y<n;y++)
            {
                if(s[y][i]==s[y][j])
                {
                    event[s[y][i]-'a'][cnt[s[y][i]-'a']++]=y;
                }
            }
            for(int c=0;c<26;c++)
            {
                int y2=0;
                for(int y=0;y<cnt[c];y++)
                {
                    while(y2<cnt[c]&&(numa[event[c][y2]+1][j+1]-numa[event[c][y2]+1][i]-numa[event[c][y]][j+1]+numa[event[c][y]][i]<=k))
                    {
                        ++y2;
                    }
                    y2=max(y2,y+1);
                    res+=y2-y-1;
                }
            }

        }
    }
    printf("%I64d\n",res);
    return 0;
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值