結果
問題 | No.2456 Stamp Art |
ユーザー | kmjp |
提出日時 | 2023-09-01 23:03:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 656 ms / 5,000 ms |
コード長 | 1,568 bytes |
コンパイル時間 | 2,202 ms |
コンパイル使用メモリ | 204,804 KB |
実行使用メモリ | 133,688 KB |
最終ジャッジ日時 | 2024-06-11 18:02:48 |
合計ジャッジ時間 | 15,230 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 151 ms
129,836 KB |
testcase_01 | AC | 104 ms
129,584 KB |
testcase_02 | AC | 196 ms
129,712 KB |
testcase_03 | AC | 553 ms
133,556 KB |
testcase_04 | AC | 53 ms
66,852 KB |
testcase_05 | AC | 150 ms
129,720 KB |
testcase_06 | AC | 645 ms
133,684 KB |
testcase_07 | AC | 632 ms
133,688 KB |
testcase_08 | AC | 630 ms
133,684 KB |
testcase_09 | AC | 656 ms
133,552 KB |
testcase_10 | AC | 654 ms
133,684 KB |
testcase_11 | AC | 644 ms
133,684 KB |
testcase_12 | AC | 634 ms
133,684 KB |
testcase_13 | AC | 656 ms
133,560 KB |
testcase_14 | AC | 645 ms
133,680 KB |
testcase_15 | AC | 524 ms
133,684 KB |
testcase_16 | AC | 563 ms
131,672 KB |
testcase_17 | AC | 150 ms
129,724 KB |
testcase_18 | AC | 52 ms
67,748 KB |
testcase_19 | AC | 485 ms
132,260 KB |
testcase_20 | AC | 648 ms
133,684 KB |
testcase_21 | AC | 652 ms
133,264 KB |
testcase_22 | AC | 640 ms
133,684 KB |
testcase_23 | AC | 390 ms
129,812 KB |
testcase_24 | AC | 477 ms
129,940 KB |
testcase_25 | AC | 152 ms
129,584 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef signed long long ll; #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define FORR2(x,y,arr) for(auto& [x,y]:arr) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;} template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;} //------------------------------------------------------- int H,W; string S[2020]; int D[4020][4020]; int E[4020][4020]; int ok(int v) { if(v>min(H,W)) return 0; ZERO(E); int y,x; for(y=v-1;y<H;y++) for(x=v-1;x<W;x++) { int num=D[y+1][x+1]-D[y+1-v][x+1]-D[y+1][x+1-v]+D[y+1-v][x+1-v]; if(num==v*v) E[y+1][x+1]++; } FOR(y,4010) FOR(x,4010) if(x&&y) E[y][x]+=E[y-1][x]+E[y][x-1]-E[y-1][x-1]; FOR(y,H) FOR(x,W) if(S[y][x]=='#') { if(E[y+v][x+v]-E[y][x+v]-E[y+v][x]+E[y][x]==0) return 0; } return 1; } void solve() { int i,j,k,l,r,x,y; string s; cin>>H>>W; FOR(y,H) { cin>>S[y]; FOR(x,W) { D[y+1][x+1]=(S[y][x]=='#'); } } FOR(y,4010) FOR(x,4010) if(x&&y) D[y][x]+=D[y-1][x]+D[y][x-1]-D[y-1][x-1]; int cur=1; for(i=10;i>=0;i--) { if(ok(cur+(1<<i))) cur+=1<<i; } cout<<cur<<endl; } int main(int argc,char** argv){ string s;int i; if(argc==1) ios::sync_with_stdio(false), cin.tie(0); FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin); cout.tie(0); solve(); return 0; }