結果
問題 | No.348 カゴメカゴメ |
ユーザー | latte0119 |
提出日時 | 2016-02-27 12:45:00 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 109 ms / 2,000 ms |
コード長 | 1,910 bytes |
コンパイル時間 | 1,407 ms |
コンパイル使用メモリ | 165,304 KB |
実行使用メモリ | 105,076 KB |
最終ジャッジ日時 | 2024-06-06 03:39:19 |
合計ジャッジ時間 | 4,962 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 68 ms
35,696 KB |
testcase_01 | AC | 4 ms
9,064 KB |
testcase_02 | AC | 96 ms
56,100 KB |
testcase_03 | AC | 70 ms
15,112 KB |
testcase_04 | AC | 4 ms
9,564 KB |
testcase_05 | AC | 3 ms
9,324 KB |
testcase_06 | AC | 3 ms
9,076 KB |
testcase_07 | AC | 3 ms
9,076 KB |
testcase_08 | AC | 3 ms
9,076 KB |
testcase_09 | AC | 3 ms
9,080 KB |
testcase_10 | AC | 3 ms
9,076 KB |
testcase_11 | AC | 3 ms
9,204 KB |
testcase_12 | AC | 5 ms
10,740 KB |
testcase_13 | AC | 4 ms
9,456 KB |
testcase_14 | AC | 3 ms
9,208 KB |
testcase_15 | AC | 109 ms
105,076 KB |
testcase_16 | AC | 5 ms
9,076 KB |
testcase_17 | AC | 3 ms
9,076 KB |
testcase_18 | AC | 3 ms
9,076 KB |
testcase_19 | AC | 4 ms
9,200 KB |
testcase_20 | AC | 4 ms
9,068 KB |
testcase_21 | AC | 4 ms
9,076 KB |
testcase_22 | AC | 3 ms
9,072 KB |
testcase_23 | AC | 73 ms
29,184 KB |
testcase_24 | AC | 72 ms
28,268 KB |
testcase_25 | AC | 70 ms
27,664 KB |
testcase_26 | AC | 74 ms
28,900 KB |
testcase_27 | AC | 70 ms
26,992 KB |
testcase_28 | AC | 74 ms
30,556 KB |
testcase_29 | AC | 72 ms
27,664 KB |
testcase_30 | AC | 71 ms
28,716 KB |
testcase_31 | AC | 69 ms
25,924 KB |
testcase_32 | AC | 71 ms
28,604 KB |
testcase_33 | AC | 9 ms
11,696 KB |
testcase_34 | AC | 8 ms
11,588 KB |
testcase_35 | AC | 9 ms
11,248 KB |
testcase_36 | AC | 9 ms
11,000 KB |
testcase_37 | AC | 9 ms
11,124 KB |
testcase_38 | AC | 9 ms
11,248 KB |
testcase_39 | AC | 9 ms
11,252 KB |
testcase_40 | AC | 8 ms
11,120 KB |
testcase_41 | AC | 9 ms
11,360 KB |
testcase_42 | AC | 9 ms
10,992 KB |
testcase_43 | AC | 3 ms
9,200 KB |
testcase_44 | AC | 3 ms
9,680 KB |
testcase_45 | AC | 3 ms
9,204 KB |
testcase_46 | AC | 4 ms
9,328 KB |
testcase_47 | AC | 4 ms
9,464 KB |
testcase_48 | AC | 4 ms
9,336 KB |
testcase_49 | AC | 4 ms
9,508 KB |
testcase_50 | AC | 4 ms
9,196 KB |
testcase_51 | AC | 3 ms
9,676 KB |
testcase_52 | AC | 4 ms
9,204 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; //#define int long long typedef long long ll; typedef pair<int,int>pint; typedef vector<int>vint; typedef vector<pint>vpint; #define pb push_back #define mp make_pair #define fi first #define se second #define all(v) (v).begin(),(v).end() #define rep(i,n) for(int i=0;i<(n);i++) #define reps(i,f,n) for(int i=(f);i<(n);i++) #define each(it,v) for(__typeof((v).begin()) it=(v).begin();it!=(v).end();it++) template<class T,class U>inline void chmin(T &t,U f){if(t>f)t=f;} template<class T,class U>inline void chmax(T &t,U f){if(t<f)t=f;} int dy[8]={0,-1,0,1,-1,-1,1,1}; int dx[8]={-1,0,1,0,-1,1,-1,1}; int H,W; string fld[1111]; int N; vint nex[111111]; int sz[111111]; vint G[111111]; int paint(int y,int x,char f,char t,int d,int p){ if(fld[y][x]!=f){ if(fld[y][x]=='x'){ nex[p].pb(y*W+x); fld[y][x]='y'; } return 0; } fld[y][x]=t; int ret=1; rep(i,d){ int ny=y+dy[i],nx=x+dx[i]; if(ny<0||ny>=H||nx<0||nx>=W)continue; ret+=paint(ny,nx,f,t,d,p); } return ret; } void build(int v,int y,int x){ rep(i,nex[v].size()){ int yy=nex[v][i]/W,xx=nex[v][i]%W; if(fld[yy][xx]!='y')continue; sz[N]=paint(yy,xx,'y','.',8,114514); G[v].pb(N); N++; paint(yy,xx,'.','@',4,N-1); build(N-1,yy,xx); } } int dp0[111111],dp1[111111]; void solve(int v){ dp0[v]=0;dp1[v]=sz[v]; rep(i,G[v].size()){ int to=G[v][i]; solve(to); dp0[v]+=max(dp0[to],dp1[to]); dp1[v]+=dp0[to]; } } signed main(){ cin.tie(0); ios_base::sync_with_stdio(false); cin>>H>>W; H+=2;W+=2; reps(i,1,H-1)cin>>fld[i],fld[i]="."+fld[i]+"."; fld[0]=fld[H-1]=string(W,'.'); N=1; paint(0,0,'.','@',4,0); build(0,0,0); solve(0); cout<<dp0[0]<<endl; return 0; }