結果

問題 No.866 レベルKの正方形
ユーザー kotatsugamekotatsugame
提出日時 2019-08-17 03:56:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 710 bytes
コンパイル時間 599 ms
コンパイル使用メモリ 66,756 KB
実行使用メモリ 417,684 KB
最終ジャッジ日時 2024-09-24 18:13:24
合計ジャッジ時間 62,051 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 4,166 ms
417,480 KB
testcase_09 AC 4,472 ms
417,536 KB
testcase_10 AC 4,558 ms
417,580 KB
testcase_11 AC 4,822 ms
417,508 KB
testcase_12 AC 3,966 ms
417,576 KB
testcase_13 AC 4,826 ms
417,584 KB
testcase_14 AC 3,969 ms
417,480 KB
testcase_15 AC 4,665 ms
417,352 KB
testcase_16 AC 4,808 ms
417,672 KB
testcase_17 AC 4,665 ms
417,568 KB
testcase_18 AC 4,617 ms
417,652 KB
testcase_19 AC 3,582 ms
417,484 KB
testcase_20 AC 2,561 ms
417,620 KB
testcase_21 WA -
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:23:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   23 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
using namespace std;
int H,W,K;
string s[2000];
int sum[2001][2001][26];
int f(int x,int y,int k,int l)
{
	int L=l,R=(H-x<W-y?H-x:W-y)+1;
	while(R-L>1)
	{
		int M=(L+R)/2;
		int cnt=k;
		for(int c=0;c<26;c++)
		{
			cnt-=sum[x+M][y+M][c]-sum[x+M][y][c]-sum[x][y+M][c]+sum[x][y][c]>0;
			if(!cnt)break;
		}
		if(cnt)L=M;
		else R=M;
	}
	return R;
}
main()
{
	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 c=0;c<26;c++)
	{
		sum[i+1][j+1][c]=sum[i+1][j][c]+sum[i][j+1][c]-sum[i][j][c]+(s[i][j]==c+'a');
	}
	long ans=0;
	for(int i=0;i<H;i++)for(int j=0;j<W;j++)
	{
	    int t=f(i,j,K,1);
	    ans+=f(i,j,K+1,t>1?t-1:1)-t;
	}
	cout<<ans<<endl;
}
0