結果

問題 No.866 レベルKの正方形
ユーザー square1001square1001
提出日時 2020-01-11 20:37:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,049 ms / 6,000 ms
コード長 716 bytes
コンパイル時間 802 ms
コンパイル使用メモリ 70,508 KB
実行使用メモリ 462,772 KB
最終ジャッジ日時 2024-11-25 11:29:24
合計ジャッジ時間 25,721 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,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2,049 ms
462,592 KB
testcase_09 AC 1,547 ms
462,720 KB
testcase_10 AC 1,323 ms
462,592 KB
testcase_11 AC 2,045 ms
462,772 KB
testcase_12 AC 1,529 ms
462,592 KB
testcase_13 AC 1,891 ms
462,592 KB
testcase_14 AC 1,600 ms
462,592 KB
testcase_15 AC 1,646 ms
462,464 KB
testcase_16 AC 1,743 ms
462,464 KB
testcase_17 AC 1,602 ms
462,592 KB
testcase_18 AC 1,644 ms
462,592 KB
testcase_19 AC 2,035 ms
462,592 KB
testcase_20 AC 1,759 ms
462,592 KB
testcase_21 AC 623 ms
462,720 KB
testcase_22 AC 2 ms
6,820 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <string>
#include <iostream>
#include <algorithm>
using namespace std;
const int inf = 1012345678;
int H, W, K, dp[2009][2009][29]; char S[2009][2009];
int main() {
	cin.tie(0);
	ios_base::sync_with_stdio(false);
	cin >> H >> W >> K;
	for (int i = 0; i < H; ++i) {
		cin >> S[i];
	}
	for (int i = 0; i < H; ++i) {
		for (int j = 0; j < W; ++j) {
			for (int k = 0; k <= 26; ++k) {
				dp[i + 1][j + 1][k] = (S[i][j] == 'a' + k ? 0 : min({ dp[i + 1][j][k], dp[i][j + 1][k], dp[i][j][k] }) + 1);
			}
		}
	}
	long long ans = 0;
	for (int i = 1; i <= H; ++i) {
		for (int j = 1; j <= W; ++j) {
			sort(dp[i][j], dp[i][j] + 27);
			ans += dp[i][j][K] - dp[i][j][K - 1];
		}
	}
	cout << ans << endl;
	return 0;
}
0