結果
問題 | No.866 レベルKの正方形 |
ユーザー | mkawa2 |
提出日時 | 2021-02-27 17:33:20 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,535 bytes |
コンパイル時間 | 1,615 ms |
コンパイル使用メモリ | 168,396 KB |
実行使用メモリ | 415,864 KB |
最終ジャッジ日時 | 2024-10-02 17:58:07 |
合計ジャッジ時間 | 9,721 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
10,496 KB |
testcase_01 | AC | 4 ms
5,248 KB |
testcase_02 | AC | 4 ms
5,248 KB |
testcase_03 | AC | 4 ms
5,248 KB |
testcase_04 | AC | 4 ms
5,248 KB |
testcase_05 | AC | 4 ms
5,248 KB |
testcase_06 | AC | 4 ms
5,248 KB |
testcase_07 | AC | 8 ms
28,776 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; #define rep(i, n) for (int i = 0; i < (n); i++) #define all(x) (x).begin(), (x).end() using ll = long long; using pii = pair<int, int>; using vi = vector<int>; using vll = vector<ll>; using vvi = vector<vector<int>>; const int inf = 1e9; int cs[26][2005][2005]; int main() { cin.tie(0); ios::sync_with_stdio(false); int h, w, k; cin >> h >> w >> k; rep(i, h) rep(j, w) { char c; cin >> c; cs[c - 'a'][i + 1][j + 1] = 1; } rep(a, 26) { rep(i, h) rep(j, w) cs[a][i + 1][j + 1] += cs[a][i + 1][j]; rep(j, w) rep(i, h) cs[a][i + 1][j + 1] += cs[a][i][j + 1]; } auto ok1=[&](int const i, int const j, int const m) { int cnt = 0; rep(a, 26) if (cs[a][i][j] + cs[a][i + m][j + m] - cs[a][i + m][j] - cs[a][i][j + m]) cnt++; return cnt <= k; }; auto ok2=[&](int const i, int const j, int const m) { int cnt = 0; rep(a, 26) if (cs[a][i][j] + cs[a][i + m][j + m] - cs[a][i + m][j] - cs[a][i][j + m]) cnt++; return cnt < k; }; int ans = 0; rep(i, h) rep(j, w) { int l = 0, r = min(h - i, w - j) + 1; while (l + 1 < r) { int m = (l + r) / 2; if (ok1(i, j, m)) l = m; else r = m; } int R=l; l=0; while (l + 1 < r) { int m = (l + r) / 2; if (ok2(i, j, m)) l = m; else r = m; } int L=l; ans+=R-L; //cout<<i<<" "<<j<<" "<<L<<" "<<R<<" "<<endl; } cout<<ans<<endl; return 0; }