結果
問題 | No.866 レベルKの正方形 |
ユーザー | Kiona1018 |
提出日時 | 2019-09-12 21:12:31 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,640 bytes |
コンパイル時間 | 1,429 ms |
コンパイル使用メモリ | 169,660 KB |
実行使用メモリ | 424,360 KB |
最終ジャッジ日時 | 2024-07-02 17:10:33 |
合計ジャッジ時間 | 9,834 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | TLE | - |
testcase_09 | -- | - |
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 | -- | - |
ソースコード
#include<bits/stdc++.h> #define rep(i,n,m) for(int i = (n); i <(m); i++) #define rrep(i,n,m) for(int i = (n) - 1; i >=(m); i--) using namespace std; using ll = long long; int main() { int h, w, k; cin >> h >> w >> k; string table[h]; rep(i, 0, h) cin >> table[i]; int cumsum[26][h+1][w+1]; memset(cumsum, 0, sizeof(cumsum)); rep(c, 0, 26) { char now = c + 'a'; rep(i, 0, h) rep(j, 0, w) { cumsum[c][i+1][j+1] += cumsum[c][i+1][j] + cumsum[c][i][j+1]; cumsum[c][i+1][j+1] -= cumsum[c][i][j]; if (table[i][j] == now) ++cumsum[c][i+1][j+1]; } } // rep(i, 0, h) // rep(j, 0, w) // cout << i << ' ' << j << ' ' << cumsum[1][i+1][j+1] << endl; ll ans = 0; rep(i, 0, h) rep(j, 0, w) { // binary search for lower bound int l = 0; int r = min(h, w); while (l != r) { int mid = (l + r + 1) / 2; if (h < mid+i or w < mid+j) { r = mid - 1; continue; } int cnt = 0; rep(c, 0, 26) cnt += int( cumsum[c][i+mid][j+mid] - cumsum[c][i+mid][j] - cumsum[c][i][j+mid] + cumsum[c][i][j]> 0); if (cnt < k) l = mid; else r = mid - 1; // if (l == r) // cout << i << ' ' << j << ' ' << l << ": " << cnt << endl; } int l_bottom = l; // binary search for upper bound r = min(h, w); l = 0; while (l != r) { int mid = (l + r + 1) / 2; if (h < mid+i or w < mid+j) { r = mid - 1; continue; } int cnt = 0; rep(c, 0, 26) cnt += int( cumsum[c][i+mid][j+mid] - cumsum[c][i+mid][j] - cumsum[c][i][j+mid] + cumsum[c][i][j]> 0); if (k < cnt) r = mid - 1; else l = mid; } ans += (ll) l - l_bottom; // cout << i << ' ' << j << ' ' << l << ' ' << l_bottom << ' ' << l - l_bottom << endl; } cout << ans << endl; return 0; }