結果
問題 | No.866 レベルKの正方形 |
ユーザー | betrue12 |
提出日時 | 2019-08-16 22:09:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,732 ms / 6,000 ms |
コード長 | 1,262 bytes |
コンパイル時間 | 1,719 ms |
コンパイル使用メモリ | 170,892 KB |
実行使用メモリ | 417,808 KB |
最終ジャッジ日時 | 2024-09-22 17:03:45 |
合計ジャッジ時間 | 24,727 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 3 ms
5,376 KB |
testcase_08 | AC | 1,589 ms
417,776 KB |
testcase_09 | AC | 1,553 ms
417,612 KB |
testcase_10 | AC | 1,715 ms
417,648 KB |
testcase_11 | AC | 1,732 ms
417,772 KB |
testcase_12 | AC | 1,459 ms
417,608 KB |
testcase_13 | AC | 1,708 ms
417,660 KB |
testcase_14 | AC | 1,358 ms
417,784 KB |
testcase_15 | AC | 1,702 ms
417,676 KB |
testcase_16 | AC | 1,644 ms
417,728 KB |
testcase_17 | AC | 1,714 ms
417,808 KB |
testcase_18 | AC | 1,704 ms
417,660 KB |
testcase_19 | AC | 1,290 ms
417,804 KB |
testcase_20 | AC | 1,142 ms
417,728 KB |
testcase_21 | AC | 1,281 ms
417,700 KB |
testcase_22 | AC | 2 ms
6,940 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 3 ms
7,708 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; int H, W, K; static int sum[2001][2001][26]; int calc(int si, int sj, int P){ int r = 0; int ans = 0; for(int l=0; ; l++){ int i = si+l, j = sj+l; if(i >= H || j >= W) break; while(r < l) r++; while(true){ int d = r-l; if(i+d > H || j+d > W) break; int num = 0; for(int k=0; k<26; k++) if(sum[i][j][k] + sum[i+d][j+d][k] - sum[i+d][j][k] - sum[i][j+d][k] > 0) num++; if(num <= P){ r++; }else{ break; } } ans += r-l; } return ans; } int main(){ cin >> H >> W >> K; string S[2000]; for(int i=0;i<H; i++) cin >> S[i]; for(int i=0; i<H; i++) for(int j=0; j<W; j++) sum[i+1][j+1][S[i][j]-'a']++; for(int i=1; i<=H; i++) for(int j=0; j<=W; j++) for(int k=0; k<26; k++) sum[i][j][k] += sum[i-1][j][k]; for(int i=0; i<=H; i++) for(int j=1; j<=W; j++) for(int k=0; k<26; k++) sum[i][j][k] += sum[i][j-1][k]; int64_t ans = 0; for(int j=0; j<W; j++) ans += calc(0, j, K) - calc(0, j, K-1); for(int i=1; i<H; i++) ans += calc(i, 0, K) - calc(i, 0, K-1); cout << ans << endl; return 0; }