結果

問題 No.421 しろくろチョコレート
ユーザー vjudge1vjudge1
提出日時 2024-12-22 22:53:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 6 ms / 2,000 ms
コード長 1,511 bytes
コンパイル時間 1,731 ms
コンパイル使用メモリ 172,624 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-22 22:53:12
合計ジャッジ時間 3,509 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 3 ms
5,248 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 5 ms
5,248 KB
testcase_17 AC 4 ms
5,248 KB
testcase_18 AC 5 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 4 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 3 ms
5,248 KB
testcase_30 AC 3 ms
5,248 KB
testcase_31 AC 5 ms
5,248 KB
testcase_32 AC 3 ms
5,248 KB
testcase_33 AC 3 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 3 ms
5,248 KB
testcase_37 AC 4 ms
5,248 KB
testcase_38 AC 5 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 4 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 3 ms
5,248 KB
testcase_43 AC 3 ms
5,248 KB
testcase_44 AC 5 ms
5,248 KB
testcase_45 AC 2 ms
5,248 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 3 ms
5,248 KB
testcase_48 AC 5 ms
5,248 KB
testcase_49 AC 3 ms
5,248 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 AC 4 ms
5,248 KB
testcase_52 AC 2 ms
5,248 KB
testcase_53 AC 2 ms
5,248 KB
testcase_54 AC 2 ms
5,248 KB
testcase_55 AC 2 ms
5,248 KB
testcase_56 AC 2 ms
5,248 KB
testcase_57 AC 2 ms
5,248 KB
testcase_58 AC 3 ms
5,248 KB
testcase_59 AC 2 ms
5,248 KB
testcase_60 AC 6 ms
5,248 KB
testcase_61 AC 6 ms
5,248 KB
testcase_62 AC 2 ms
5,248 KB
testcase_63 AC 2 ms
5,248 KB
testcase_64 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std; const int N=2600,M=20000,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;
}
0