結果
問題 | No.866 レベルKの正方形 |
ユーザー | fine |
提出日時 | 2019-08-17 00:32:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,186 bytes |
コンパイル時間 | 1,636 ms |
コンパイル使用メモリ | 172,392 KB |
実行使用メモリ | 421,116 KB |
最終ジャッジ日時 | 2024-09-23 05:57:35 |
合計ジャッジ時間 | 9,822 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
6,816 KB |
testcase_01 | AC | 3 ms
6,820 KB |
testcase_02 | AC | 4 ms
6,944 KB |
testcase_03 | AC | 4 ms
6,940 KB |
testcase_04 | AC | 3 ms
6,940 KB |
testcase_05 | AC | 4 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,944 KB |
testcase_07 | AC | 3 ms
6,944 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> using namespace std; using ll = long long; int cnt[26][2001][2001]; int main() { cin.tie(0); ios::sync_with_stdio(false); int h, w, K; cin >> h >> w >> K; vector<string> c(h); for (int i = 0; i < h; i++) { cin >> c[i]; for (int j = 0; j < w; j++) { for (int k = 0; k < 26; k++) { cnt[k][i + 1][j + 1] = cnt[k][i + 1][j]; } cnt[c[i][j] - 'a'][i + 1][j + 1]++; } } for (int i = 1; i <= h; i++) { for (int j = 0; j <= w; j++) { for (int k = 0; k < 26; k++) { cnt[k][i][j] += cnt[k][i - 1][j]; } } } ll ans = 0; for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { int sz = min(i + 1, j + 1); int ng = 0, ok = sz + 1; while (ok - ng > 1) { int mid = (ok + ng) / 2; int val = 0; for (int k = 0; k < 26; k++) { bool hoge = bool(cnt[k][i + 1][j + 1] + cnt[k][i + 1 - mid][j + 1 - mid] - cnt[k][i + 1][j + 1 - mid] - cnt[k][i + 1 - mid][j + 1]); val += hoge; } if (val >= K) { ok = mid; } else { ng = mid; } } if (ok <= 0 || ok > sz) continue; int ng2 = sz + 1, ok2 = -1; while (ng2 - ok2 > 1) { int mid = (ok2 + ng2) / 2; int val = 0; for (int k = 0; k < 26; k++) { bool hoge = bool(cnt[k][i + 1][j + 1] + cnt[k][i + 1 - mid][j + 1 - mid] - cnt[k][i + 1][j + 1 - mid] - cnt[k][i + 1 - mid][j + 1]); val += hoge; } if (val <= K) { ok2 = mid; } else { ng2 = mid; } } if (ok2 <= 0 || ok2 > sz || ok > ok2) continue; ans += ok2 - ok + 1; //cerr << i << " " << j << ": " << ok << " " << ok2 << endl; } } cout << ans << "\n"; return 0; }