結果

問題 No.421 しろくろチョコレート
ユーザー vjudge1vjudge1
提出日時 2024-12-23 11:20:52
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 5 ms / 2,000 ms
コード長 1,753 bytes
コンパイル時間 3,063 ms
コンパイル使用メモリ 249,356 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-23 11:20:58
合計ジャッジ時間 4,957 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 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 2 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 2 ms
5,248 KB
testcase_11 AC 2 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 4 ms
5,248 KB
testcase_17 AC 4 ms
5,248 KB
testcase_18 AC 4 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 3 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 2 ms
5,248 KB
testcase_31 AC 2 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 2 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 3 ms
5,248 KB
testcase_41 AC 2 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 3 ms
5,248 KB
testcase_44 AC 4 ms
5,248 KB
testcase_45 AC 2 ms
5,248 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 3 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 AC 4 ms
5,248 KB
testcase_52 AC 3 ms
5,248 KB
testcase_53 AC 2 ms
5,248 KB
testcase_54 AC 2 ms
5,248 KB
testcase_55 AC 3 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 5 ms
5,248 KB
testcase_61 AC 4 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;
int n,S,T;
int hd[100005],nxt[800005],c[800005],dy[800005],tot=1;
int cur[100005],l[100005];
void addedge(int u,int v,int w){
    nxt[++tot]=hd[u],hd[u]=tot;
    c[tot]=w,dy[tot]=v;
}
bool getc(){
    for(int i=1;i<=n;++i)l[i]=1e9,cur[i]=hd[i];
    l[S]=0;
    queue<int>q;
    q.emplace(S);
    while(q.size()){
        int x=q.front();
        q.pop();
        for(int i=hd[x];i;i=nxt[i]){
            if(!c[i])continue;
            int cu=dy[i];
            if(l[cu]>l[x]+1){
                l[cu]=l[x]+1;
                q.emplace(cu);
            }
        }
    }
    return l[T]<1e9;
}
int ans=0;
int dinic(int x,int rl){
    if(x==T){
        ans+=rl;
        return rl;
    }
    int rr=rl;
    for(int i=cur[x];i;i=nxt[i]){
        cur[x]=i;
        if(!c[i])continue;
        int cu=dy[i];
        if(l[cu]!=l[x]+1)continue;
        int zz=dinic(cu,min(rr,c[i]));
        c[i]-=zz,c[i^1]+=zz;
        rr-=zz;
        if(!rr)break;
    }
    return rl-rr;
}
char s[105][105];
#define mk(x,y) (((x)-1)*M+(y))
int mb[4][2]={{0,1},{1,0},{0,-1},{-1,0}};
int main(){
	int N,M;
	scanf("%d%d",&N,&M);
	n=N*M+2,S=n-1,T=n;
	int bb=0,ww=0;
	for(int i=1;i<=N;++i){
		scanf("%s",s[i]+1);
		for(int j=1;j<=M;++j)if(s[i][j]!='.'){
			if(s[i][j]=='w')addedge(S,mk(i,j),1),addedge(mk(i,j),S,0),++ww;
			else addedge(mk(i,j),T,1),addedge(T,mk(i,j),0),++bb;
		}
	}
	for(int i=1;i<=N;++i)for(int j=1;j<=M;++j)if(s[i][j]=='w'){
		for(int k=0;k<4;++k){
			int dx=i+mb[k][0],dy=j+mb[k][1];
			if(dx<1||dx>N||dy<1||dy>M||s[dx][dy]!='b')continue;
			addedge(mk(i,j),mk(dx,dy),1);
			addedge(mk(dx,dy),mk(i,j),0);
		}
	}
	while(getc())dinic(S,INT_MAX);
	int an=bb+ww+8*min(bb,ww)+90*ans;
	printf("%d\n",an);
    return 0;
}
0