結果
問題 | No.866 レベルKの正方形 |
ユーザー | erbowl |
提出日時 | 2019-08-16 22:15:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,624 bytes |
コンパイル時間 | 1,692 ms |
コンパイル使用メモリ | 177,300 KB |
実行使用メモリ | 434,720 KB |
最終ジャッジ日時 | 2024-09-22 17:31:06 |
合計ジャッジ時間 | 9,768 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,948 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() { ll h,w,K; std::cin >> h>>w>>K; std::vector<string> s(h); 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'; sum[alpha][i+1][j+1] = 1; 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]; // std::cout << sum[k][i+1][j+1] << std::endl; } } } ll result = 0; for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { for (int size = 1; size <= min(h,w); size++) { if(i+size<h && j+size<w){ 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) result++; } } } } std::cout << result << std::endl; // // p種類 // 1,4,9,16,25 // pの倍数のときだけ // 2000か。tの大きさの正方形は(2000-t)*(2000-t)通りある4 * 1e6。数えれんこともない。 // もじの種類数 // ある領域に含まれるa-zの数は出せる。 }