結果

問題 No.2456 Stamp Art
ユーザー tailstails
提出日時 2023-09-02 22:38:55
言語 cLay
(20240714-1)
結果
AC  
実行時間 266 ms / 5,000 ms
コード長 585 bytes
コンパイル時間 3,964 ms
コンパイル使用メモリ 175,908 KB
実行使用メモリ 72,900 KB
最終ジャッジ日時 2024-06-12 04:50:57
合計ジャッジ時間 7,487 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 199 ms
72,012 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 3 ms
7,744 KB
testcase_06 AC 236 ms
70,784 KB
testcase_07 AC 216 ms
72,264 KB
testcase_08 AC 207 ms
72,896 KB
testcase_09 AC 231 ms
70,784 KB
testcase_10 AC 264 ms
70,784 KB
testcase_11 AC 214 ms
70,784 KB
testcase_12 AC 233 ms
72,900 KB
testcase_13 AC 259 ms
72,268 KB
testcase_14 AC 266 ms
70,912 KB
testcase_15 AC 198 ms
72,136 KB
testcase_16 AC 98 ms
38,860 KB
testcase_17 AC 3 ms
6,944 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 125 ms
49,988 KB
testcase_20 AC 242 ms
72,772 KB
testcase_21 AC 219 ms
65,604 KB
testcase_22 AC 246 ms
72,136 KB
testcase_23 AC 11 ms
7,168 KB
testcase_24 AC 18 ms
11,456 KB
testcase_25 AC 2 ms
6,944 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(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