結果

問題 No.866 レベルKの正方形
ユーザー tko919tko919
提出日時 2019-08-31 14:07:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3,562 ms / 6,000 ms
コード長 1,443 bytes
コンパイル時間 1,623 ms
コンパイル使用メモリ 169,528 KB
実行使用メモリ 410,424 KB
最終ジャッジ日時 2024-11-24 15:42:41
合計ジャッジ時間 47,266 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 2,584 ms
410,320 KB
testcase_09 AC 2,579 ms
410,300 KB
testcase_10 AC 2,981 ms
410,296 KB
testcase_11 AC 3,194 ms
410,204 KB
testcase_12 AC 3,438 ms
410,216 KB
testcase_13 AC 3,098 ms
410,316 KB
testcase_14 AC 3,562 ms
410,296 KB
testcase_15 AC 2,938 ms
410,272 KB
testcase_16 AC 3,409 ms
410,424 KB
testcase_17 AC 2,995 ms
410,224 KB
testcase_18 AC 3,148 ms
410,204 KB
testcase_19 AC 3,304 ms
410,320 KB
testcase_20 AC 2,883 ms
410,312 KB
testcase_21 AC 3,199 ms
410,236 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 2 ms
6,816 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