結果

問題 No.866 レベルKの正方形
ユーザー leaf_1415leaf_1415
提出日時 2019-08-22 04:01:02
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,441 bytes
コンパイル時間 645 ms
コンパイル使用メモリ 63,752 KB
実行使用メモリ 445,952 KB
最終ジャッジ日時 2024-04-19 08:48:39
合計ジャッジ時間 81,529 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 5,634 ms
445,824 KB
testcase_21 AC 5,329 ms
445,952 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 WA -
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdio.h>
#include <algorithm>
#include <vector>
#define llint long long
#define inf 1000000000

using namespace std;

int h, w, k;
int sum[2005][2005];
char c[2005][2005];
int dp[2005][2005];
int vec[2005][2005][26];

int get(int x, int y, int k)
{
	return sum[x+k][y+k]-sum[x+k][y-1]-sum[x-1][y+k]+sum[x-1][y-1];
}

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> h >> w >> k;
	for(int y = 1; y <= h; y++){
		for(int x = 1; x <= w; x++){
			cin >> c[x][y];
		}
	}
	
	for(int x = 1; x <= w+1; x++) dp[x][h+1] = inf;
	for(int y = 1; y <= h+1; y++) dp[w+1][y] = inf;
	
	for(int i = 0; i < 26; i++){
		for(int x = 1; x <= w; x++){
			for(int y = 1; y <= h; y++){
				sum[x][y] = sum[x-1][y]+sum[x][y-1]-sum[x-1][y-1];
				if(c[x][y] == i+'a') sum[x][y]++;
			}
		}
		for(int y = h; y >= 1; y--){
			for(int x = w; x >= 1; x--){
				dp[x][y] = dp[x+1][y];
				if(dp[x][y] < dp[x][y+1]) dp[x][y] = dp[x][y+1];
				if(c[x][y] == i+'a') dp[x][y] = 0;
				if(dp[x][y] <= w-x || dp[x][y] <= h-y){
					if(get(x, y, dp[x][y]) == 0) dp[x][y]++;
				}
				vec[x][y][i] = dp[x][y];
			}
		}
	}
	
	llint ans = 0;
	for(int x = 1; x <= w; x++){
		for(int y = 1; y <= h; y++){
			sort(vec[x][y], vec[x][y]+26);
			if(vec[x][y][k-1] >= inf) continue;
			if(k >= 26 || vec[x][y][k] >= inf) ans += min(w-x, h-y)+1;
			else ans += vec[x][y][k];
			ans -= vec[x][y][k-1];
		}
	}
	cout << ans << endl;
	
	return 0;
}
0