結果
問題 | No.866 レベルKの正方形 |
ユーザー | mkawa2 |
提出日時 | 2021-05-24 23:58:34 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 362 ms / 6,000 ms |
コード長 | 1,494 bytes |
コンパイル時間 | 2,260 ms |
コンパイル使用メモリ | 201,688 KB |
実行使用メモリ | 160,000 KB |
最終ジャッジ日時 | 2024-10-13 08:18:51 |
合計ジャッジ時間 | 7,563 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 3 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | AC | 3 ms
5,248 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 362 ms
159,872 KB |
testcase_09 | AC | 333 ms
159,744 KB |
testcase_10 | AC | 295 ms
159,744 KB |
testcase_11 | AC | 306 ms
159,872 KB |
testcase_12 | AC | 246 ms
159,744 KB |
testcase_13 | AC | 296 ms
159,872 KB |
testcase_14 | AC | 225 ms
159,872 KB |
testcase_15 | AC | 294 ms
159,872 KB |
testcase_16 | AC | 288 ms
159,872 KB |
testcase_17 | AC | 296 ms
159,744 KB |
testcase_18 | AC | 295 ms
159,744 KB |
testcase_19 | AC | 207 ms
159,872 KB |
testcase_20 | AC | 170 ms
160,000 KB |
testcase_21 | AC | 182 ms
159,872 KB |
testcase_22 | AC | 2 ms
5,248 KB |
testcase_23 | AC | 2 ms
5,248 KB |
testcase_24 | AC | 2 ms
5,248 KB |
ソースコード
#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; const ll lim = 1e18; int t[12][2005][2005]; int h, w, k; int bitsize(int a) { int res = 0; while (a) { res++; a >>= 1; } return res; } int cnt(int i, int l, int r) { int d = r - l + 1; if (i + d > h) return inf; if (l == r) return 1; int e = bitsize(d - 1) - 1; int m = d - (1 << e); int s = t[e][i][l] | t[e][i + m][l] | t[e][i][l + m] | t[e][i + m][l + m]; return __builtin_popcount(s); } int main() { cin.tie(0); ios::sync_with_stdio(false); cin >> h >> w >> k; int mxe = bitsize(min(h, w)) - 1; rep(i, h) { string s; cin >> s; rep(j, w) t[0][i][j] = 1 << (s[j] - 'a'); } rep(e, mxe) { int d = 1 << e; rep(i, h) { if (i + d * 2 > h) break; rep(j, w) { if (j + d * 2 > w) break; t[e + 1][i][j] = t[e][i][j] | t[e][i + d][j] | t[e][i][j + d] | t[e][i + d][j + d]; } } } ll ans = 0; rep(i, h) { int r0 = 0, r1 = 0; rep(l, w) { if (r0 < l) r0 = l; while (r0 < w && cnt(i, l, r0) < k) r0++; if (r0 == w) break; if (r1 < r0) r1 = r0; while (r1 < w && cnt(i, l, r1) <= k) r1++; ans += r1 - r0; } } cout << ans << endl; return 0; }