結果
問題 | No.866 レベルKの正方形 |
ユーザー | erbowl |
提出日時 | 2019-08-17 08:11:02 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,685 bytes |
コンパイル時間 | 1,775 ms |
コンパイル使用メモリ | 173,780 KB |
実行使用メモリ | 436,724 KB |
最終ジャッジ日時 | 2024-09-24 18:53:33 |
合計ジャッジ時間 | 15,661 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
6,812 KB |
testcase_01 | AC | 3 ms
6,940 KB |
testcase_02 | AC | 3 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 3 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,944 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 3 ms
6,944 KB |
testcase_08 | AC | 1,783 ms
429,636 KB |
testcase_09 | AC | 3,784 ms
429,732 KB |
testcase_10 | TLE | - |
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 | -- | - |
ソースコード
#define rep(i, n) for(int i = 0; i < (int)(n); i++) typedef int ll; #include <bits/stdc++.h> using namespace std; int main() { cin.tie(0); ios::sync_with_stdio(false); ll h,w,K; std::cin >> h>>w>>K; std::vector<string> s(h); ll sum[26][2001][2001]; // vector<vector<vector<ll>>> sum(26,vector<vector<ll>>(h+1,vector<ll>(w+1))); for (int i = 0; i < h; i++) { std::cin >> s[i]; for (int j = 0; j < w; j++) { int alpha = s[i][j]-'a'; for (int k = 0; k < 26; k++) { sum[k][i+1][j+1] = sum[k][i][j+1] + sum[k][i+1][j] - sum[k][i][j]; } sum[alpha][i+1][j+1]++; } } ll result = 0; vector<vector<ll>> size_from(h,vector<ll>(w,1)); for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { for (int size = size_from[i][j]; i+size<h && j+size<w; size++) { ll num = 0; for (int k = 0; k < 26; k++) { ll cou; cou = sum[k][i+size+1][j+size+1]-sum[k][i][j+size+1]-sum[k][i+size+1][j]+sum[k][i][j]; if(cou>0){ num++; } } if(num<K && size>1){ if(i+1<h)size_from[i+1][j] = size; if(j+1<w)size_from[i][j+1] = size; if(j+1<w && i+1<h)size_from[i][j+1] = size; } if(num==K){ result++; } if(num>K){ break; } } } } std::cout << result << std::endl; }