結果

問題 No.866 レベルKの正方形
ユーザー roarisroaris
提出日時 2021-06-05 22:11:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,024 bytes
コンパイル時間 1,977 ms
コンパイル使用メモリ 201,648 KB
実行使用メモリ 422,704 KB
最終ジャッジ日時 2024-11-21 21:42:00
合計ジャッジ時間 102,808 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
10,624 KB
testcase_01 AC 3 ms
420,872 KB
testcase_02 AC 4 ms
12,196 KB
testcase_03 AC 3 ms
12,064 KB
testcase_04 AC 3 ms
421,000 KB
testcase_05 AC 3 ms
420,736 KB
testcase_06 AC 4 ms
420,864 KB
testcase_07 AC 3 ms
420,736 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 3 ms
5,248 KB
testcase_24 AC 5 ms
421,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i, n) for (int i=0; i<n; i++)
#define pb push_back
typedef long long ll;

int H, W, K;
char c[2010][2010];
int acc[26][2010][2010];

int calc(int k) {
    int res = 0;
    
    rep(i, H) rep(j, W) {
        int l = 1;
        int r = min(H-i, W-j);
        while (l<=r) {
            int m = (l+r)/2;
            int cnt = 0;
            rep(k, 26) if (acc[k][i+m][j+m]-acc[k][i+m][j]-acc[k][i][j+m]+acc[k][i][j]>0) cnt++;
            if (cnt<=k) l = m+1;
            else r = m-1;
        }
        res += r;
    }
    
    return res;
}

int main() {
    //ループ変数が被っていないか?
    //制約を確認しているか?
    //変数のtypoがないか?
    cin.tie(0); ios::sync_with_stdio(false);
    
    cin >> H >> W >> K;
    rep(i, H) rep(j, W) cin >> c[i][j];
    
    rep(i, 26) rep(j, H) rep(k, W) {
        acc[i][j+1][k+1] = acc[i][j+1][k]+acc[i][j][k+1]-acc[i][j][k]+(c[j][k]-'a'==i);
    }
    
    cout << calc(K)-calc(K-1) << endl;
}
0