結果

問題 No.866 レベルKの正方形
ユーザー chocoruskchocorusk
提出日時 2019-08-16 22:17:43
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2,164 ms / 6,000 ms
コード長 1,309 bytes
コンパイル時間 956 ms
コンパイル使用メモリ 105,008 KB
実行使用メモリ 418,160 KB
最終ジャッジ日時 2024-09-22 17:45:52
合計ジャッジ時間 27,208 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
56,744 KB
testcase_01 AC 12 ms
56,744 KB
testcase_02 AC 11 ms
54,788 KB
testcase_03 AC 12 ms
56,840 KB
testcase_04 AC 12 ms
54,784 KB
testcase_05 AC 12 ms
56,728 KB
testcase_06 AC 12 ms
56,728 KB
testcase_07 AC 12 ms
56,724 KB
testcase_08 AC 1,841 ms
418,032 KB
testcase_09 AC 1,816 ms
417,948 KB
testcase_10 AC 1,613 ms
418,144 KB
testcase_11 AC 2,164 ms
418,160 KB
testcase_12 AC 1,556 ms
418,060 KB
testcase_13 AC 2,087 ms
418,128 KB
testcase_14 AC 1,980 ms
418,064 KB
testcase_15 AC 1,832 ms
418,076 KB
testcase_16 AC 1,915 ms
418,092 KB
testcase_17 AC 1,836 ms
417,944 KB
testcase_18 AC 1,724 ms
418,120 KB
testcase_19 AC 1,909 ms
418,072 KB
testcase_20 AC 1,694 ms
417,968 KB
testcase_21 AC 829 ms
418,036 KB
testcase_22 AC 11 ms
54,660 KB
testcase_23 AC 11 ms
54,784 KB
testcase_24 AC 12 ms
56,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
int dp[26][2002][2002];
int h, w;
string c[2002];

int main()
{
	int k;
	cin>>h>>w>>k;
	for(int i=0; i<h; i++){
		cin>>c[i];
	}
	for(int i=0; i<h; i++){
		for(int l=0; l<26; l++){
			if(l==c[i][0]-'a') dp[l][i][0]=0;
			else dp[l][i][0]=1;
		}
	}
	for(int i=0; i<w; i++){
		for(int l=0; l<26; l++){
			if(l==c[0][i]-'a') dp[l][0][i]=0;
			else dp[l][0][i]=1;
		}
	}
	for(int i=1; i<h; i++){
		for(int j=1; j<w; j++){
			for(int l=0; l<26; l++){
				if(c[i][j]-'a'==l) dp[l][i][j]=0;
				else{
					dp[l][i][j]=min({dp[l][i-1][j-1], dp[l][i-1][j], dp[l][i][j-1]})+1;
				}
			}
		}
	}
	ll ans=0;
	for(int i=0; i<h; i++){
		for(int j=0; j<w; j++){
			int x[28];
			for(int l=0; l<26; l++) x[l+1]=dp[l][i][j];
			x[0]=0, x[27]=min(i+1, j+1);
			sort(x, x+28);
			ans+=(ll)(x[k+1]-x[k]);
		}
	}
	cout<<ans<<endl;
	return 0;
}
0