結果

問題 No.2456 Stamp Art
ユーザー tailstails
提出日時 2023-09-02 22:37:42
言語 cLay
(20240714-1)
結果
AC  
実行時間 291 ms / 5,000 ms
コード長 616 bytes
コンパイル時間 4,577 ms
コンパイル使用メモリ 175,496 KB
実行使用メモリ 70,912 KB
最終ジャッジ日時 2024-06-12 04:49:17
合計ジャッジ時間 8,580 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 198 ms
70,912 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 244 ms
70,656 KB
testcase_07 AC 222 ms
70,784 KB
testcase_08 AC 217 ms
70,912 KB
testcase_09 AC 258 ms
70,656 KB
testcase_10 AC 285 ms
70,784 KB
testcase_11 AC 232 ms
70,912 KB
testcase_12 AC 259 ms
70,912 KB
testcase_13 AC 286 ms
70,784 KB
testcase_14 AC 291 ms
70,912 KB
testcase_15 AC 201 ms
70,784 KB
testcase_16 AC 112 ms
37,760 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 122 ms
48,384 KB
testcase_20 AC 263 ms
70,656 KB
testcase_21 AC 237 ms
64,512 KB
testcase_22 AC 266 ms
70,784 KB
testcase_23 AC 12 ms
7,040 KB
testcase_24 AC 20 ms
9,216 KB
testcase_25 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@h,@w,a[h+2][w+2]{},n=0;
string@s[h];

rep(y,h){
	rep(x,w){
		if(s[y][x]=='#'){
			ll b=h;
			b<?=a[y+0][x+1];
			b<?=a[y+1][x+0];
			b<?=a[y+0][x+0];
			a[y+1][x+1]=b+1;
			n+=1;
		}
	}
}

ll c[h+1][w+1];
ll d[w+1];

ll ok=1,ng=h+1;
while(ok+1<ng){
	rep(y,h+1){
		rep(x,w+1){
			c[y][x]=0;
		}
	}
	rep(x,w+1){
		d[x]=0;
	}
	ll k=ok+ng>>1;
	ll m=n;
	rep(y,h){
		ll e=0;
		rep(x,w){
			if(a[y+1][x+1]){
				if(y+k<=h&&x+k<=w&&a[y+k][x+k]>=k){
					c[y][x]+=1;
					c[y][x+k]-=1;
					c[y+k][x]-=1;
					c[y+k][x+k]+=1;
				}
			}
			e+=d[x]+=c[y][x];
			m-=e>0;
		}
	}
	if(m){
		ng=k;
	}else{
		ok=k;
	}
}

wt(ok);
0