結果

問題 No.866 レベルKの正方形
ユーザー tko919tko919
提出日時 2019-08-31 14:07:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 4,241 ms / 6,000 ms
コード長 1,443 bytes
コンパイル時間 1,636 ms
コンパイル使用メモリ 168,068 KB
実行使用メモリ 410,432 KB
最終ジャッジ日時 2024-05-03 14:44:22
合計ジャッジ時間 53,977 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2,847 ms
410,312 KB
testcase_09 AC 2,884 ms
410,208 KB
testcase_10 AC 3,432 ms
410,296 KB
testcase_11 AC 3,515 ms
410,336 KB
testcase_12 AC 3,951 ms
410,232 KB
testcase_13 AC 3,493 ms
410,216 KB
testcase_14 AC 4,241 ms
410,432 KB
testcase_15 AC 3,273 ms
410,316 KB
testcase_16 AC 4,054 ms
410,244 KB
testcase_17 AC 3,430 ms
410,216 KB
testcase_18 AC 3,478 ms
410,316 KB
testcase_19 AC 3,942 ms
410,340 KB
testcase_20 AC 3,460 ms
410,352 KB
testcase_21 AC 3,949 ms
410,252 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 3 ms
7,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <bits/stdc++.h>
using namespace std;

//template
#define rep(i,a,b) for(int i=(a);i<(b);i++)
#define rrep(i,a,b) for(int i=(a);i>(b);i--)
#define ALL(v) (v).begin(),(v).end()
typedef long long int ll; typedef pair<ll, ll> P;
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
template<typename A,size_t N,typename T>void Fill(A(&array)[N],const T &val){fill((T*)array, (T*)(array+N), val);}
const int inf=INT_MAX/2; const ll INF=LLONG_MAX/2;
//template end

int h,w,k; int imos[2001][2001][26]={};
int rui(int x1,int y1,int x2,int y2){
    int res=0;
    rep(i,0,26)if(imos[x2][y2][i]-imos[x1][y2][i]-imos[x2][y1][i]+imos[x1][y1][i]!=0)res++;
    return res;
}
int search(int x,int y,int a){
    int l=-1,r=min(h-x,w-y)+1,mid;
    while(r-l>1){
        mid=(l+r)/2;
        if(rui(x,y,x+mid,y+mid)>=a)r=mid;
        else l=mid;
    }
    return r;
}

int main(){
    scanf("%d%d%d",&h,&w,&k);
    rep(i,0,h)rep(j,0,w){
        char c; cin>>c;
        imos[i+1][j+1][c-'a']++;
    }
    rep(i,0,h)rep(j,0,w+1)rep(l,0,26)imos[i+1][j][l]+=imos[i][j][l];
    rep(i,0,h+1)rep(j,0,w)rep(l,0,26)imos[i][j+1][l]+=imos[i][j][l];
    ll ans=0,add;
    rep(i,0,h)rep(j,0,w){
        add=search(i,j,k+1)-search(i,j,k);
        ans+=add;
    }
    printf("%lld\n",ans);
    return 0;
}
0