結果
問題 | No.866 レベルKの正方形 |
ユーザー | square1001 |
提出日時 | 2019-08-16 21:45:08 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 973 bytes |
コンパイル時間 | 225 ms |
コンパイル使用メモリ | 33,280 KB |
実行使用メモリ | 13,804 KB |
最終ジャッジ日時 | 2024-09-22 15:36:03 |
合計ジャッジ時間 | 21,999 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 511 ms
6,964 KB |
testcase_09 | AC | 835 ms
7,024 KB |
testcase_10 | TLE | - |
testcase_11 | AC | 5,747 ms
7,052 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 | -- | - |
ソースコード
#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; }