結果

問題 No.866 レベルKの正方形
ユーザー parukiparuki
提出日時 2019-08-16 22:42:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,196 bytes
コンパイル時間 1,492 ms
コンパイル使用メモリ 168,784 KB
実行使用メモリ 338,500 KB
最終ジャッジ日時 2023-10-24 02:09:16
合計ジャッジ時間 15,831 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
338,500 KB
testcase_01 AC 81 ms
141,556 KB
testcase_02 AC 81 ms
141,556 KB
testcase_03 AC 82 ms
141,556 KB
testcase_04 AC 83 ms
141,556 KB
testcase_05 AC 81 ms
141,556 KB
testcase_06 AC 82 ms
141,500 KB
testcase_07 AC 81 ms
141,500 KB
testcase_08 AC 5,188 ms
197,316 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

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], smallCnt[1 << 13];
//      4294967295
// cnt: 2668667000

void solve() {
    int H, W;
    short K;
    cin >> H >> W >> K;
    rep(i, 1 << 13)smallCnt[i] = bitcnt(i);
    rep(i, 1 << 13) {
        rep(j, 1 << 13) {
            int k = (i << 13) | j;
            cnt[k] = smallCnt[i]+ smallCnt[j];
        }
    }
    ui ans = 0;
    
    rep(y, H)rep(x, W) {
        char c;
        cin >> c;
        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++;
                }
            }
        }
    }

    cout << ans << endl;
}

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