結果

問題 No.421 しろくろチョコレート
ユーザー vjudge1vjudge1
提出日時 2024-12-20 23:14:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 1,584 bytes
コンパイル時間 1,373 ms
コンパイル使用メモリ 122,112 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-20 23:15:03
合計ジャッジ時間 3,288 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<cmath>
#include<cstring>
#include<algorithm>
#include<cassert>
#include<utility>
#include<queue>
#include<stack>
#include<vector>
#include<map>
#include<set>
#include<bitset>

#define rep(i,l,r) for(int i=(l);i<=(r);i++)
#define per(i,r,l) for(int i=(r);i>=(l);i--)

#define all(vc) vc.begin(),vc.end()
#define sz(vc) ((int)vc.size())
#define pb push_back
#define fi first
#define se second
#define x0 __x00
#define y0 __y00

using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int,int> pii;
typedef pair<ll,ll> pll;

const int N=55,M=2505;
int n,m,mt[M];
char ch[N][N];
bool st[M];
vector<int>G[M];
int get(int x,int y){
    return (x-1)*m+y;
}
void add(int a,int b,int c,int d){
    G[get(a,b)].pb(get(c,d));
    G[get(c,d)].pb(get(a,b));
}
bool dfs(int x){
    st[x]=1;
    for(auto to:G[x]){
        int _=mt[to];
        if(_<0||(!st[_]&&dfs(_))){
            mt[x]=to,mt[to]=x;
            return 1;
        }
    }return 0;
}


int main(){


    ios::sync_with_stdio(0);
    cin.tie(0),cout.tie(0);
   

    cin>>n>>m;
    rep(i,1,n)rep(j,1,m)cin>>ch[i][j];
    int b,w;b=w=0;
    rep(i,1,n)rep(j,1,m){
        if(ch[i][j]=='.')continue;
        b+=ch[i][j]=='b';
        w+=ch[i][j]=='w';
        if(i<n&&ch[i+1][j]!='.')add(i,j,i+1,j);
        if(j<m&&ch[i][j+1]!='.')add(i,j,i,j+1);
    }
    memset(mt,-1,sizeof(mt));
    int res=0;
    rep(i,1,n*m)
        if(mt[i]<0)memset(st,0,sizeof(st)),res+=dfs(i);

    b-=res,w-=res;
    cout<<res*100ll+min(b,w)*10+abs(b-w)<<'\n';


    return 0;
}
0