結果

問題 No.866 レベルKの正方形
ユーザー kotatsugamekotatsugame
提出日時 2019-08-28 12:10:18
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,186 ms / 6,000 ms
コード長 541 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 70,748 KB
実行使用メモリ 417,384 KB
最終ジャッジ日時 2024-04-28 20:43:09
合計ジャッジ時間 27,225 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 2,186 ms
417,180 KB
testcase_09 AC 1,608 ms
417,176 KB
testcase_10 AC 1,403 ms
417,340 KB
testcase_11 AC 2,000 ms
417,384 KB
testcase_12 AC 1,663 ms
417,344 KB
testcase_13 AC 2,070 ms
417,372 KB
testcase_14 AC 1,706 ms
417,180 KB
testcase_15 AC 1,916 ms
417,288 KB
testcase_16 AC 1,871 ms
417,336 KB
testcase_17 AC 1,734 ms
417,140 KB
testcase_18 AC 1,948 ms
417,264 KB
testcase_19 AC 2,103 ms
417,328 KB
testcase_20 AC 1,797 ms
417,280 KB
testcase_21 AC 778 ms
417,260 KB
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 3 ms
7,696 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:7:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
    7 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
using namespace std;
int H,W,K;
string s[2000];
int dp[2000][2000][26];
main()
{
	cin>>H>>W>>K;
	for(int i=0;i<H;i++)cin>>s[i];
	for(int i=H;i--;)for(int j=W;j--;)
	{
		for(int c=0;c<26;c++)
		{
			dp[i][j][c]=min({i+1<H?dp[i+1][j][c]:H-i,j+1<W?dp[i][j+1][c]:W-j,i+1<H&&j+1<W?dp[i+1][j+1][c]:2000})+1;
		}
		dp[i][j][s[i][j]-'a']=1;
	}
	long ans=0;
	for(int i=0;i<H;i++)for(int j=0;j<W;j++)
	{
		sort(dp[i][j],dp[i][j]+26);
		ans+=(K<26?dp[i][j][K]:min(H-i,W-j)+1)-dp[i][j][K-1];
	}
	cout<<ans<<endl;
}
0