結果

問題 No.866 レベルKの正方形
ユーザー ccppjsrbccppjsrb
提出日時 2020-06-10 11:58:04
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 814 ms / 6,000 ms
コード長 1,577 bytes
コンパイル時間 1,746 ms
コンパイル使用メモリ 203,596 KB
実行使用メモリ 175,580 KB
最終ジャッジ日時 2024-06-23 00:08:47
合計ジャッジ時間 13,004 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 814 ms
175,480 KB
testcase_09 AC 756 ms
175,580 KB
testcase_10 AC 753 ms
175,488 KB
testcase_11 AC 734 ms
175,360 KB
testcase_12 AC 670 ms
175,360 KB
testcase_13 AC 720 ms
175,548 KB
testcase_14 AC 641 ms
175,488 KB
testcase_15 AC 756 ms
175,468 KB
testcase_16 AC 729 ms
175,360 KB
testcase_17 AC 742 ms
175,480 KB
testcase_18 AC 746 ms
175,472 KB
testcase_19 AC 601 ms
175,408 KB
testcase_20 AC 541 ms
175,488 KB
testcase_21 AC 644 ms
175,488 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

unsigned int sq[2001][2001][11];

int level(int y, int x, int m){
    int z = 32-__builtin_clz((unsigned int)m);
    int zz = 1<<(z-1);
    return __builtin_popcount(sq[y][x][z-1]|sq[y+m-zz][x][z-1]|sq[y][x+m-zz][z-1]|sq[y+m-zz][x+m-zz][z-1]);
}
long long rangek(int y, int x, int h, int w, int k){
    long long ret = 0ll;
    int mx = min(h-y, w-x);
    long long lowers[2001][2];
    for(int i = 0; i < mx; i++){
        lowers[i][0] = 0;
        lowers[i][1] = 0;
    }
    for(int i = 0; i < 2; i++){
        int l = 0;
        for(int r = 1; r < mx + 1; r++){
            for(;r>l;){
                if(level(y+l,x+l,r-l) < k + i){
                    break;
                }
                l++;
            }
            lowers[r-1][i] = l;
            ret += lowers[r-1][0] - lowers[r-1][i];
        }
    }
    return ret;
}
int main() {
    int h,w,k;
    cin>>h>>w>>k;
    string s;
    for(int y = 0; y < h; y++){
        cin >> s;
        for(int x = 0; x < w; x++){
            sq[y][x][0] = 1<<(s[x]-'a');
        }
    }
    int z;
    for(int i = 1; i < 11;i++){
        z = 1<<(i-1);
        for(int y = 0; y < h&&y+(1<<i)<=h; y++){
            for(int x = 0; x < w&&x+(1<<i)<=w; x++){
                sq[y][x][i] = sq[y][x][i-1]|sq[y+z][x][i-1]|sq[y][x+z][i-1]|sq[y+z][x+z][i-1];
            }
        }
    }
    long long ans = 0ll;
    for(int x = 0; x < w; x++){
        ans += rangek(0, x, h, w, k);
    }
    for(int y = 1; y < h; y++){
        ans += rangek(y, 0, h, w, k);
    }
    cout<<ans<<endl;
}
0