結果
問題 | No.866 レベルKの正方形 |
ユーザー | square1001 |
提出日時 | 2019-08-16 21:46:07 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,027 bytes |
コンパイル時間 | 555 ms |
コンパイル使用メモリ | 34,176 KB |
実行使用メモリ | 13,504 KB |
最終ジャッジ日時 | 2024-09-22 15:38:29 |
合計ジャッジ時間 | 22,121 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 494 ms
6,972 KB |
testcase_09 | AC | 820 ms
6,972 KB |
testcase_10 | TLE | - |
testcase_11 | AC | 5,751 ms
6,980 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
ソースコード
#pragma GCC target("avx2") #pragma GCC optimize("O3") #include <cstdio> using namespace std; int H, W, c[26]; char S[2009][2009]; long long solve(int K) { long long ans = 0; for (int i = 0; i < H; ++i) { int sz = 0, cnt = 0; for (int j = 0; j < W; ++j) { while (cnt < K && i + sz < H && j + sz < W) { for (int l = 0; l < sz; ++l) { if (c[S[i + sz][j + l] - 'a']++ == 0) ++cnt; if (c[S[i + l][j + sz] - 'a']++ == 0) ++cnt; } if (c[S[i + sz][j + sz] - 'a']++ == 0) ++cnt; ++sz; } if (sz != 0) { ans += sz - 1; if (cnt < K) ++ans; } if (sz > 0) { --sz; for (int l = 0; l < sz; ++l) { if (--c[S[i + sz][j + l] - 'a'] == 0) --cnt; if (--c[S[i + l][j] - 'a'] == 0) --cnt; } if (--c[S[i + sz][j + sz] - 'a'] == 0) --cnt; } } } return ans; } int main() { int K; scanf("%d %d %d", &H, &W, &K); for (int i = 0; i < H; ++i) scanf("%s", S[i]); long long res1 = solve(K); long long res2 = solve(K + 1); printf("%lld\n", res2 - res1); return 0; }