結果
問題 | No.866 レベルKの正方形 |
ユーザー | uenoku |
提出日時 | 2020-04-28 21:47:49 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,757 bytes |
コンパイル時間 | 1,798 ms |
コンパイル使用メモリ | 202,504 KB |
実行使用メモリ | 434,024 KB |
最終ジャッジ日時 | 2024-05-04 02:56:04 |
合計ジャッジ時間 | 9,972 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 3 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 3 ms
5,376 KB |
testcase_05 | AC | 3 ms
5,376 KB |
testcase_06 | AC | 3 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 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> #define rep(i, n) for (lli i = 0; i < (n); i++) #define rrep(i, n) for (lli i = (n)-1; i >= 0; i--) using namespace std; using lli = long long int; void YESNO(bool), YesNo(bool); template <class T1, class T2> bool chmin(T1 &l, const T2 &r); template <class T1, class T2> bool chmax(T1 &l, const T2 &r); int c[2005][2005]; int sum[26][2005][2005] = {}; lli f(int l, int i, int j, int p) { return sum[l][i + p][j + p] - sum[l][i + p][j] - sum[l][i][j + p] + sum[l][i][j]; } lli h, w, k; lli calc(int i, int j, int p) { // [up, n)でp種類以上 lli up = min(h - i, w - j) + 1; lli low = 0; while (up - low > 1) { lli mid = (up + low) / 2; lli cnt = 0; rep(l, 26) cnt += (f(l, i, j, mid) >= 1); (cnt >= p ? up : low) = mid; } return up; } int main() { cin >> h >> w >> k; rep(i, h) rep(j, w) { char ch; cin >> ch; c[i][j] = ch - 'a'; } rep(l, 26) { rep(i, h) rep(j, w) sum[l][i + 1][j + 1] = sum[l][i][j + 1] + sum[l][i + 1][j] - sum[l][i][j] + int(c[i][j] == l); } lli ret = 0; rep(i, h) rep(j, w) { // cout << i << " " << j << " " << calc(i, j, k) << endl; // cout << i << " " << j << " " << calc(i, j, k + 1) << endl; ret += calc(i, j, k + 1) - calc(i, j, k); } cout << ret << endl; } // -- lib void YESNO(bool b) { cout << (b ? "YES" : "NO") << endl; } void YesNo(bool b) { cout << (b ? "Yes" : "No") << endl; } template <class T1, class T2> bool chmin(T1 &l, const T2 &r) { return (l > r) ? (l = r, true) : false; } template <class T1, class T2> bool chmax(T1 &l, const T2 &r) { return (l < r) ? (l = r, true) : false; }