結果
問題 | No.421 しろくろチョコレート |
ユーザー | vjudge1 |
提出日時 | 2024-12-22 22:51:20 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,509 bytes |
コンパイル時間 | 1,892 ms |
コンパイル使用メモリ | 174,268 KB |
実行使用メモリ | 13,636 KB |
最終ジャッジ日時 | 2024-12-22 22:51:34 |
合計ジャッジ時間 | 13,127 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
13,636 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | AC | 3 ms
6,820 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,816 KB |
testcase_14 | AC | 2 ms
6,820 KB |
testcase_15 | AC | 2 ms
6,816 KB |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | AC | 2 ms
6,816 KB |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | AC | 2 ms
6,820 KB |
testcase_24 | AC | 2 ms
6,816 KB |
testcase_25 | AC | 2 ms
6,816 KB |
testcase_26 | AC | 2 ms
6,816 KB |
testcase_27 | AC | 2 ms
6,820 KB |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
testcase_45 | RE | - |
testcase_46 | RE | - |
testcase_47 | RE | - |
testcase_48 | RE | - |
testcase_49 | RE | - |
testcase_50 | RE | - |
testcase_51 | RE | - |
testcase_52 | RE | - |
testcase_53 | RE | - |
testcase_54 | RE | - |
testcase_55 | RE | - |
testcase_56 | RE | - |
testcase_57 | RE | - |
testcase_58 | RE | - |
testcase_59 | RE | - |
testcase_60 | RE | - |
testcase_61 | RE | - |
testcase_62 | AC | 2 ms
6,820 KB |
testcase_63 | AC | 3 ms
6,816 KB |
testcase_64 | TLE | - |
ソースコード
#include<bits/stdc++.h> using namespace std; const int N=260,M=2000,INF=1e9,dx[]={0,0,1,-1},dy[]={1,-1,0,0}; char s[N][N]; struct ed{ int u,v,f; }e[M]; vector<int> ed[N]; int d[N],c[N],ec,S,T; void add(int u,int v,int f){ ed[u].push_back(ec); e[ec++]={u,v,f}; ed[v].push_back(ec); e[ec++]={v,u,0}; } bool bfs(){ memset(d,-1,sizeof(d)); memset(c,0,sizeof(c)); queue<int> q; q.push(S); d[S]=0; while(!q.empty()){ int u=q.front(); q.pop(); for(int ei:ed[u]){ int v=e[ei].v,f=e[ei].f; if(d[v]==-1&&f) d[v]=d[u]+1,q.push(v); } } return d[T]>=0; } int dfs(int u,int l){ int r=0; if(u==T||(!l)) return l; for(int &i=c[u];i<ed[u].size();++i){ int v=e[ed[u][i]].v; if(d[v]!=d[u]+1) continue; int f=e[ed[u][i]].f,g=dfs(v,min(f,l)); r+=g; l-=g; e[ed[u][i]].f-=g; e[ed[u][i]^1].f+=g; if(!l) break; } return r; } int Dinic(){ int f=0; while(bfs()) f+=dfs(S,INF); return f; } #define id(x,y) (x-1)*m+y int main(){ int n,m,b=0,w=0; scanf("%d%d",&n,&m); S=n*m+1,T=S+1; for(int i=1;i<=n;++i) scanf("%s",s[i]+1); for(int i=1;i<=n;++i) for(int j=1;j<=m;++j){ if(s[i][j]=='w') w++,add(id(i,j),T,1); if(s[i][j]!='b') continue; b++,add(S,id(i,j),1); for(int k=0;k<4;++k){ int x=i+dx[k],y=j+dy[k]; if(x>0&&y>0&&x<=n&&y<=m&&s[x][y]=='w') add(id(i,j),id(x,y),1); } } printf("%d\n",Dinic()*90+min(b,w)*9+max(b,w)); return 0; }