結果
問題 | No.866 レベルKの正方形 |
ユーザー | 👑 hos.lyric |
提出日時 | 2019-08-16 22:53:03 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 616 ms / 6,000 ms |
コード長 | 1,993 bytes |
コンパイル時間 | 1,511 ms |
コンパイル使用メモリ | 110,804 KB |
実行使用メモリ | 417,708 KB |
最終ジャッジ日時 | 2024-09-22 20:12:09 |
合計ジャッジ時間 | 10,882 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 3 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,948 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 559 ms
417,196 KB |
testcase_09 | AC | 569 ms
417,708 KB |
testcase_10 | AC | 616 ms
417,072 KB |
testcase_11 | AC | 607 ms
417,320 KB |
testcase_12 | AC | 515 ms
417,708 KB |
testcase_13 | AC | 608 ms
416,424 KB |
testcase_14 | AC | 466 ms
416,172 KB |
testcase_15 | AC | 606 ms
416,940 KB |
testcase_16 | AC | 572 ms
416,428 KB |
testcase_17 | AC | 602 ms
417,580 KB |
testcase_18 | AC | 607 ms
416,056 KB |
testcase_19 | AC | 455 ms
417,704 KB |
testcase_20 | AC | 413 ms
417,704 KB |
testcase_21 | AC | 354 ms
417,708 KB |
testcase_22 | AC | 2 ms
6,944 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 3 ms
6,944 KB |
ソースコード
#pragma GCC optimize ("Ofast") #pragma GCC optimize ("unroll-loops") #pragma GCC target ("avx") #include <cassert> #include <cmath> #include <cstdint> #include <cstdio> #include <cstdlib> #include <cstring> #include <algorithm> #include <bitset> #include <complex> #include <deque> #include <iostream> #include <map> #include <numeric> #include <queue> #include <set> #include <sstream> #include <string> #include <unordered_map> #include <unordered_set> #include <utility> #include <vector> using namespace std; using Int = long long; template <class T1, class T2> ostream &operator<<(ostream &os, const pair<T1, T2> &a) { return os << "(" << a.first << ", " << a.second << ")"; }; template <class T> void pv(T a, T b) { for (T i = a; i != b; ++i) cerr << *i << " "; cerr << endl; } template <class T> void chmin(T &t, const T &f) { if (t > f) t = f; } template <class T> void chmax(T &t, const T &f) { if (t < f) t = f; } int H, W, K; char C[2010][2010]; int sum[2010][2010][26]; inline int calc(int x0, int x1, int y0, int y1, int e) { return sum[x0][y0][e] - sum[x0][y1][e] - sum[x1][y0][e] + sum[x1][y1][e]; } inline int get(int x, int y, int l) { int ret = 0; for (int e = 0; e < 26; ++e) { if (calc(x, x + l, y, y + l, e) > 0) { ++ret; } } return ret; } int main() { for (; ~scanf("%d%d%d", &H, &W, &K); ) { for (int x = 0; x < H; ++x) { scanf("%s", C[x]); } for (int x = 0; x < H; ++x) for (int y = 0; y < W; ++y) { for (int e = 0; e < 26; ++e) { sum[x + 1][y + 1][e] = sum[x + 1][y][e] + sum[x][y + 1][e] - sum[x][y][e] + ((C[x][y] - 'a' == e) ? 1 : 0); } } Int ans = 0; for (int s = 0; s < 2; ++s) { for (int x = 0; x < H; ++x) { int l = 1; for (int y = 0; y < W; ++y) { --l; for (; x + l <= H && y + l <= W && get(x, y, l) < K + s; ++l) {} ans += (s == 0) ? -l : +l; } } } printf("%lld\n", ans); } return 0; }