結果
問題 | No.348 カゴメカゴメ |
ユーザー | kzyKT |
提出日時 | 2016-02-27 00:07:37 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 186 ms / 2,000 ms |
コード長 | 2,648 bytes |
コンパイル時間 | 1,426 ms |
コンパイル使用メモリ | 163,636 KB |
実行使用メモリ | 125,192 KB |
最終ジャッジ日時 | 2024-09-24 10:49:08 |
合計ジャッジ時間 | 5,595 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 106 ms
60,528 KB |
testcase_01 | AC | 21 ms
42,964 KB |
testcase_02 | AC | 122 ms
86,260 KB |
testcase_03 | AC | 101 ms
51,124 KB |
testcase_04 | AC | 21 ms
43,892 KB |
testcase_05 | AC | 23 ms
45,820 KB |
testcase_06 | AC | 20 ms
43,000 KB |
testcase_07 | AC | 21 ms
42,976 KB |
testcase_08 | AC | 21 ms
43,084 KB |
testcase_09 | AC | 20 ms
42,996 KB |
testcase_10 | AC | 20 ms
43,012 KB |
testcase_11 | AC | 21 ms
42,956 KB |
testcase_12 | AC | 24 ms
44,716 KB |
testcase_13 | AC | 24 ms
43,364 KB |
testcase_14 | AC | 21 ms
43,212 KB |
testcase_15 | AC | 186 ms
125,192 KB |
testcase_16 | AC | 22 ms
42,836 KB |
testcase_17 | AC | 21 ms
42,932 KB |
testcase_18 | AC | 20 ms
40,948 KB |
testcase_19 | AC | 20 ms
42,908 KB |
testcase_20 | AC | 22 ms
42,996 KB |
testcase_21 | AC | 21 ms
42,972 KB |
testcase_22 | AC | 21 ms
42,772 KB |
testcase_23 | AC | 120 ms
66,692 KB |
testcase_24 | AC | 116 ms
62,772 KB |
testcase_25 | AC | 120 ms
66,520 KB |
testcase_26 | AC | 119 ms
66,592 KB |
testcase_27 | AC | 118 ms
64,532 KB |
testcase_28 | AC | 120 ms
65,756 KB |
testcase_29 | AC | 118 ms
66,968 KB |
testcase_30 | AC | 119 ms
65,488 KB |
testcase_31 | AC | 112 ms
62,392 KB |
testcase_32 | AC | 117 ms
65,964 KB |
testcase_33 | AC | 27 ms
45,580 KB |
testcase_34 | AC | 29 ms
45,420 KB |
testcase_35 | AC | 28 ms
45,224 KB |
testcase_36 | AC | 28 ms
45,248 KB |
testcase_37 | AC | 29 ms
45,512 KB |
testcase_38 | AC | 29 ms
45,540 KB |
testcase_39 | AC | 28 ms
45,256 KB |
testcase_40 | AC | 29 ms
45,488 KB |
testcase_41 | AC | 29 ms
45,396 KB |
testcase_42 | AC | 29 ms
45,428 KB |
testcase_43 | AC | 23 ms
43,544 KB |
testcase_44 | AC | 23 ms
43,400 KB |
testcase_45 | AC | 22 ms
41,304 KB |
testcase_46 | AC | 22 ms
41,456 KB |
testcase_47 | AC | 24 ms
43,604 KB |
testcase_48 | AC | 23 ms
43,496 KB |
testcase_49 | AC | 22 ms
41,564 KB |
testcase_50 | AC | 23 ms
43,428 KB |
testcase_51 | AC | 22 ms
43,420 KB |
testcase_52 | AC | 23 ms
43,344 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define all(c) (c).begin(),(c).end() #define rrep(i,n) for(int i=(int)(n)-1;i>=0;i--) #define REP(i,m,n) for(int i=(int)(m);i<(int)(n);i++) #define rep(i,n) REP(i,0,n) #define iter(c) __typeof((c).begin()) #define tr(it,c) for(iter(c) it=(c).begin();it!=(c).end();it++) #define mem(a) memset(a,0,sizeof(a)) #define pd(a) printf("%.10f\n",a) #define pb(a) push_back(a) #define in(a) insert(a) #define pi M_PI #define R cin>> #define F first #define S second #define C class #define ll long long #define ln cout<<'\n' #define _(_1,_2,_3,N,...)N #define pr(...) _(__VA_ARGS__,pr3,pr2,pr1)(__VA_ARGS__) template<C T>void pr1(T a){cout<<a;ln;} template<C T,C T2>void pr2(T a,T2 b){cout<<a<<' '<<b;ln;} template<C T,C T2,C T3>void pr3(T a,T2 b,T3 c){cout<<a<<' '<<b<<' '<<c;ln;} template<C T>void PR(T a,int n){rep(i,n){if(i)cout<<' ';cout<<a[i];}ln;} bool check(int n,int m,int x,int y){return x>=0&&x<n&&y>=0&&y<m;} const ll MAX=1000000007,MAXL=1LL<<60,dx[8]={-1,-1,-1,0,0,1,1,1},dy[8]={-1,0,1,-1,1,-1,0,1},dxx[4]={-1,0,1,0},dyy[4]={0,1,0,-1}; typedef pair<int,int> P; int n,m; string s[1111]; int c[1111][1111],u[1111][1111],uu[1111][1111],cnt,d[1111111],M; vector<int> v[1111111]; void dfs(int nx,int ny,int f,int z) { if(f&&s[nx][ny]!='x') return; if(f) u[nx][ny]=1,cnt++; uu[nx][ny]=1; c[nx][ny]=z; if(f) { rep(i,8) { int x=nx+dx[i],y=ny+dy[i]; if(check(n,m,x,y)&&!u[x][y]) dfs(x,y,f,z); } } else { rep(i,4) { int x=nx+dxx[i],y=ny+dyy[i]; if(!check(n,m,x,y)) M=0; if(u[x][y]&&M>c[x][y]) M=c[x][y]; if(check(n,m,x,y)&&!u[x][y]&&c[x][y]!=z) dfs(x,y,f,z); } } } P solve(int x) { P p=P(0,0); rep(i,v[x].size()) { P q=solve(v[x][i]); p.F+=q.S; if(q.F>q.S) p.S+=q.F; else p.S+=q.S; } p.F+=d[x]; return p; } void Main() { cin >> n >> m; rep(i,n) cin >> s[i]; int k=1; rep(i,n) { rep(j,m) { if(s[i][j]=='x'&&!u[i][j]) { cnt=0; dfs(i,j,1,k); d[k]=cnt; k++; } } } mem(uu); rep(i,n) { rep(j,m) { if(s[i][j]!='x'&&uu[i][j]==0) { M=MAX; dfs(i,j,0,-1); dfs(i,j,0,M); } } } int e[1111111]; fill(e,e+1111111,MAX); rep(i,n) { rep(j,m) { if(!c[i][j]) continue; rep(k,4) { int x=i+dxx[k],y=j+dyy[k]; if(!check(n,m,x,y)) e[c[i][j]]=0; else if(e[c[i][j]]>c[x][y]) e[c[i][j]]=c[x][y]; } } } rep(i,1111111) { if(e[i]!=MAX) v[e[i]].pb(i); } P p=solve(0); pr(max(p.F,p.S)); } int main() { ios::sync_with_stdio(0);cin.tie(0); Main();return 0; }