結果
問題 | No.866 レベルKの正方形 |
ユーザー | erbowl |
提出日時 | 2019-08-17 08:23:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,445 bytes |
コンパイル時間 | 1,967 ms |
コンパイル使用メモリ | 174,528 KB |
実行使用メモリ | 436,596 KB |
最終ジャッジ日時 | 2024-09-24 18:57:45 |
合計ジャッジ時間 | 10,186 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
6,812 KB |
testcase_01 | AC | 4 ms
6,940 KB |
testcase_02 | AC | 4 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 3 ms
6,944 KB |
testcase_05 | AC | 3 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,940 KB |
testcase_07 | AC | 3 ms
6,940 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 | -- | - |
ソースコード
#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][j+size]-sum[k][i][j+size]-sum[k][i+size][j]+sum[k][i][j]; if(cou>0){ num++; } } if(num<K && size>1){ if(i+1<h)size_from[i+1][j] = max(size,size_from[i+1][j]); if(j+1<w)size_from[i][j+1] = max(size,size_from[i][j+1]); if(j+1<w && i+1<h)size_from[i+1][j+1] = max(size,size_from[i+1][j+1]); } if(num==K){ ll l = size; ll r = min(h-i,w-j)+1; while(r-l>1){ ll m = (r+l)/2; ll numm =0; for (int k = 0; k < 26; k++) { ll c = sum[k][i+m][j+m]-sum[k][i][j+m]-sum[k][i+m][j]+sum[k][i][j]; if(c>0){ numm++; } } if(numm==K){ l = m; }else{ r = m; } } result += l-size+1; break; } if(num>K){ break; } } } } std::cout << result << std::endl; }