結果

問題 No.866 レベルKの正方形
ユーザー parukiparuki
提出日時 2019-08-16 22:33:09
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,112 bytes
コンパイル時間 1,760 ms
コンパイル使用メモリ 168,208 KB
実行使用メモリ 197,456 KB
最終ジャッジ日時 2023-10-24 01:41:30
合計ジャッジ時間 90,249 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 259 ms
141,684 KB
testcase_01 AC 259 ms
141,684 KB
testcase_02 AC 259 ms
141,684 KB
testcase_03 AC 258 ms
141,684 KB
testcase_04 AC 259 ms
141,684 KB
testcase_05 AC 259 ms
141,684 KB
testcase_06 AC 259 ms
141,684 KB
testcase_07 AC 259 ms
141,684 KB
testcase_08 TLE -
testcase_09 AC 5,985 ms
197,456 KB
testcase_10 AC 5,927 ms
197,456 KB
testcase_11 TLE -
testcase_12 AC 5,954 ms
197,456 KB
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 5,945 ms
197,456 KB
testcase_17 TLE -
testcase_18 AC 5,946 ms
197,456 KB
testcase_19 AC 5,962 ms
197,456 KB
testcase_20 AC 5,928 ms
197,456 KB
testcase_21 AC 5,858 ms
197,456 KB
testcase_22 AC 258 ms
141,684 KB
testcase_23 AC 257 ms
141,684 KB
testcase_24 AC 257 ms
143,732 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include "bits/stdc++.h"
using namespace std;
#define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i))
#define rep(i,j) FOR(i,0,j)
#define each(x,y) for(auto &(x):(y))
#define mp make_pair
#define MT make_tuple
#define all(x) (x).begin(),(x).end()
#define debug(x) cout<<#x<<": "<<(x)<<endl
#define smax(x,y) (x)=max((x),(y))
#define smin(x,y) (x)=min((x),(y))
#define MEM(x,y) memset((x),(y),sizeof (x))
#define sz(x) (int)(x).size()
#define RT return
using ll = long long;
using pii = pair<int, int>;
using vi = vector<int>;
using vll = vector<ll>;

int bitcnt(unsigned int x) {
    x = (x & 0x55555555) + (x >> 1 & 0x55555555);
    x = (x & 0x33333333) + (x >> 2 & 0x33333333);
    x = (x & 0x0f0f0f0f) + (x >> 4 & 0x0f0f0f0f);
    x = (x & 0x00ff00ff) + (x >> 8 & 0x00ff00ff);
    x = (x & 0x0000ffff) + (x >> 16 & 0x0000ffff);
    return (int)x;
}

using ui = unsigned int;

const int MA = 2001;
ui input[MA][MA], yoko[MA][MA], tate[MA][MA], square[MA][MA];
short cnt[1 << 26];
//      4294967295
// cnt: 2668667000

void solve() {
    int H, W, K;
    scanf("%d%d%d", &H, &W, &K);

    rep(i, 1 << 26)cnt[i] = bitcnt(i);

    ui ans = 0;
    
    rep(y, H) {
        static char s[MA];
        scanf("%s", s);
        rep(x, W) {
            char c = s[x];
            input[y][x] = 1u << (c - 'a');
            yoko[y][x] = tate[y][x] = square[y][x] = input[y][x];
        }
    }
    if (K == 1)ans += (ui)(H * W);
    const int N = min(H, W);

    for (int len = 2; len <= N; ++len) {
        for (int y = 0; y <= H - len; ++y) {
            for (int x = 0; x <= W - len; ++x) {
                yoko[y + len - 1][x] |= input[y + len - 1][x + len - 1];
                tate[y][x + len - 1] |= input[y + len - 1][x + len - 1];
                square[y][x] |= yoko[y + len - 1][x] | tate[y][x + len - 1];

                if (cnt[square[y][x]] == K) {
                    ans++;
                }
            }
        }
    }

    printf("%lld\n", (ll)ans);
}

int main() {
	//ios::sync_with_stdio(false);
	//cin.tie(0);
	//cout << fixed << setprecision(15);
	solve();
	return 0;
}
0