結果

問題 No.866 レベルKの正方形
ユーザー square1001square1001
提出日時 2020-01-11 20:37:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,968 ms / 6,000 ms
コード長 716 bytes
コンパイル時間 565 ms
コンパイル使用メモリ 70,696 KB
実行使用メモリ 462,604 KB
最終ジャッジ日時 2024-05-04 04:33:44
合計ジャッジ時間 24,853 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 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 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1,901 ms
462,592 KB
testcase_09 AC 1,512 ms
462,552 KB
testcase_10 AC 1,300 ms
462,592 KB
testcase_11 AC 1,946 ms
462,584 KB
testcase_12 AC 1,504 ms
462,464 KB
testcase_13 AC 1,859 ms
462,604 KB
testcase_14 AC 1,566 ms
462,592 KB
testcase_15 AC 1,625 ms
462,464 KB
testcase_16 AC 1,701 ms
462,464 KB
testcase_17 AC 1,560 ms
462,464 KB
testcase_18 AC 1,615 ms
462,592 KB
testcase_19 AC 1,968 ms
462,592 KB
testcase_20 AC 1,736 ms
462,464 KB
testcase_21 AC 666 ms
462,592 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 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