結果

問題 No.421 しろくろチョコレート
ユーザー femtofemto
提出日時 2016-09-09 23:00:35
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 1,490 bytes
コンパイル時間 804 ms
コンパイル使用メモリ 79,640 KB
実行使用メモリ 9,564 KB
最終ジャッジ日時 2024-09-23 07:05:14
合計ジャッジ時間 4,758 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 14 ms
8,392 KB
testcase_02 AC 6 ms
7,860 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 4 ms
7,576 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 9 ms
6,944 KB
testcase_08 AC 7 ms
7,856 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 12 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 95 ms
9,044 KB
testcase_17 AC 65 ms
9,280 KB
testcase_18 AC 93 ms
9,292 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 26 ms
8,976 KB
testcase_21 AC 54 ms
8,768 KB
testcase_22 AC 13 ms
6,944 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,944 KB
testcase_27 AC 2 ms
6,940 KB
testcase_28 AC 22 ms
8,404 KB
testcase_29 AC 26 ms
8,976 KB
testcase_30 AC 26 ms
8,892 KB
testcase_31 AC 261 ms
9,564 KB
testcase_32 AC 34 ms
8,808 KB
testcase_33 AC 33 ms
8,848 KB
testcase_34 AC 8 ms
7,576 KB
testcase_35 AC 8 ms
7,780 KB
testcase_36 AC 7 ms
8,252 KB
testcase_37 AC 122 ms
8,776 KB
testcase_38 AC 247 ms
9,116 KB
testcase_39 AC 6 ms
7,980 KB
testcase_40 AC 54 ms
6,940 KB
testcase_41 AC 7 ms
6,940 KB
testcase_42 AC 4 ms
6,944 KB
testcase_43 AC 6 ms
8,132 KB
testcase_44 AC 109 ms
7,804 KB
testcase_45 AC 4 ms
6,940 KB
testcase_46 AC 4 ms
6,940 KB
testcase_47 AC 9 ms
8,056 KB
testcase_48 AC 216 ms
8,192 KB
testcase_49 AC 7 ms
8,100 KB
testcase_50 AC 5 ms
6,944 KB
testcase_51 AC 126 ms
9,116 KB
testcase_52 AC 8 ms
6,940 KB
testcase_53 AC 4 ms
6,940 KB
testcase_54 AC 7 ms
8,028 KB
testcase_55 AC 2 ms
6,940 KB
testcase_56 AC 3 ms
6,944 KB
testcase_57 AC 3 ms
6,944 KB
testcase_58 AC 12 ms
8,192 KB
testcase_59 AC 6 ms
6,944 KB
testcase_60 AC 332 ms
9,504 KB
testcase_61 AC 418 ms
9,316 KB
testcase_62 AC 2 ms
6,944 KB
testcase_63 AC 2 ms
6,940 KB
testcase_64 AC 8 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <fstream>
#include <vector>
#include <cstring>
#include <string>
#include <algorithm>
#include <iomanip>
using namespace std;

const int MAX_V = 2500;

int V;
bool G[MAX_V][MAX_V];
int match[MAX_V];
bool used[MAX_V];

bool dfs(int v) {
	used[v] = true;
	for(int i = 0; i < V; i++) {
		if(!G[v][i]) continue;
		int u = i, w = match[u];
		if(w < 0 || (!used[w] && dfs(w))) {
			match[v] = u;
			match[u] = v;
			return true;
		}
	}
	return false;
}

int bipartite_matching() {
	int res = 0;
	memset(match, -1, sizeof(match));
	for(int v = 0; v < V; v++) {
		if(match[v] < 0) {
			memset(used, 0, sizeof(used));
			if(dfs(v)) {
				res++;
			}
		}
	}
	return res;
}

int N, M;
int dx[4] = { 1, 0, -1, 0 }, dy[4] = { 0, 1, 0, -1 };
string c[50];
int toV(int x, int y) {
	return y * M + x;
}

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

	cin >> N >> M;
	V = N * M;
	for(int i = 0; i < N; i++) {
		cin >> c[i];
	}

	int bc = 0, wc = 0;
	for(int y = 0; y < N; y++) {
		for(int x = 0; x < M; x++) {
			if(c[y][x] == '.') continue;
			if(c[y][x] == 'b') bc++;
			if(c[y][x] == 'w') wc++;
			for(int k = 0; k < 4; k++) {
				int nx = x + dx[k], ny = y + dy[k];
				if(0 <= nx && nx < M && 0 <= ny && ny < N && c[ny][nx] != '.') {
					G[toV(x, y)][toV(nx, ny)] = G[toV(nx, ny)][toV(x, y)] = true;
				}
			}
		}
	}
	int m = bipartite_matching();
	bc -= m, wc -= m;
	int ans = m * 100 + min(bc, wc) * 10 + (max(bc, wc) - min(bc, wc));

	cout << ans << endl;
}
0