結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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,256 ms
417,272 KB
testcase_09 AC 1,729 ms
417,144 KB
testcase_10 AC 1,526 ms
417,272 KB
testcase_11 AC 2,140 ms
417,196 KB
testcase_12 AC 1,777 ms
417,244 KB
testcase_13 AC 2,206 ms
417,324 KB
testcase_14 AC 1,837 ms
417,292 KB
testcase_15 AC 2,054 ms
417,292 KB
testcase_16 AC 2,002 ms
417,236 KB
testcase_17 AC 1,860 ms
417,300 KB
testcase_18 AC 2,084 ms
417,224 KB
testcase_19 AC 2,236 ms
417,208 KB
testcase_20 AC 1,932 ms
417,288 KB
testcase_21 AC 897 ms
417,300 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 3 ms
7,568 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