結果
問題 | No.421 しろくろチョコレート |
ユーザー | kurenai3110 |
提出日時 | 2017-06-02 00:01:15 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,179 bytes |
コンパイル時間 | 1,109 ms |
コンパイル使用メモリ | 88,932 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-09-21 21:44:04 |
合計ジャッジ時間 | 2,836 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 1 ms
5,376 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 1 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | AC | 1 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 3 ms
5,376 KB |
testcase_29 | AC | 3 ms
5,376 KB |
testcase_30 | WA | - |
testcase_31 | AC | 3 ms
5,376 KB |
testcase_32 | AC | 3 ms
5,376 KB |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | AC | 2 ms
5,376 KB |
testcase_41 | AC | 2 ms
5,376 KB |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | AC | 3 ms
5,376 KB |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | WA | - |
testcase_48 | AC | 3 ms
5,376 KB |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | AC | 3 ms
5,376 KB |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | AC | 4 ms
5,376 KB |
testcase_61 | WA | - |
testcase_62 | WA | - |
testcase_63 | WA | - |
testcase_64 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <string> #include <queue> #include <set> using namespace std; struct Dinic { static const int INF = 1e9; struct E { //to,容量,逆辺のindex int to, cap, rev; E(int t, int c, int r) { to = t; cap = c; rev = r; } }; //最大頂点数 int MAX_V; vector<vector<E>>G; Dinic(int max_v) { MAX_V = max_v; G.resize(MAX_V); } //有向辺 inline void add_edge(int from, int to, int cap) { if (from == to)return; G[from].push_back(E(to, cap, G[to].size())); G[to].push_back(E(from, 0, G[from].size()-1)); } //無向辺 inline void add_undirected_edge(int from, int to, int cap) { if (from == to)return; G[from].push_back(E(to, cap, G[to].size())); G[to].push_back(E(from, cap, G[from].size()-1)); } //深さ vector<int>level; //深さのラベル付け void bfs(int s) { level.assign(MAX_V, -1); queue<int> que; level[s] = 0; que.push(s); while (!que.empty()) { int v = que.front(); que.pop(); for (int i = 0; i < G[v].size(); i++) { E &e = G[v][i]; if (e.cap > 0 && level[e.to] < 0) { level[e.to] = level[v] + 1; que.push(e.to); } } } } //s -- v -- u -- t //tから深さ優先探索 int dfs(int s, int u, int crr) { if (s == u || crr == 0)return crr; int sum = 0; for (int i = 0; i < G[u].size(); i++) { E& e = G[u][i]; //t側 E& ee = G[e.to][e.rev]; //s側 int v = e.to; if (level[v] >= level[u] || ee.cap <= 0)continue; int f = dfs(s, v, min(crr - sum, ee.cap)); if (f <= 0)continue; //容量の更新 ee.cap -= f; e.cap += f; //流量の更新 sum += f; if (sum == crr)break; } return sum; } int max_flow(int s, int t) { int flow = 0; //tに流せなくなるまで while(1){ bfs(s); if (level[t] < 0)return flow; flow += dfs(s, t, INF); } } }; int main() { int N, M; cin >> N >> M; vector<vector<char>>cho(N); for (int i = 0; i < N; i++) { cho[i].resize(M); for (int j = 0; j < M; j++) { char c; cin >> c; cho[i][j] = c; } } set<int>bs,ws; Dinic dn(2502); for (int i = 0; i < N; i++) { for (int j = 0; j < M; j++) { if (cho[i][j] == 'w') { ws.insert(i*M + j + 1); if (i > 0 && cho[i - 1][j] == 'b') { dn.add_edge(i*M + j + 1, (i - 1)*M + j + 1, 1); bs.insert((i - 1)*M + j + 1); } if (i < N - 1 && cho[i + 1][j] == 'b') { dn.add_edge(i*M + j + 1, (i + 1)*M + j + 1, 1); bs.insert((i + 1)*M + j + 1); } if (j > 0 && cho[i][j - 1] == 'b') { dn.add_edge(i*M + j + 1, i*M + j - 1 + 1, 1); bs.insert(i*M + j - 1 + 1); } if (j < M - 1 && cho[i][j + 1] == 'b') { dn.add_edge(i*M + j + 1, i*M + j + 1 + 1, 1); bs.insert(i*M + j + 1 + 1); } } } } for (auto itr = ws.begin(); itr != ws.end(); itr++) { dn.add_edge(0, *itr, 1); } for (auto itr = bs.begin(); itr != bs.end(); itr++) { dn.add_edge(*itr, N * M + 1, 1); } int ans = dn.max_flow(0, N*M+1); int w = ws.size() - ans; int b = bs.size() - ans; int pair = min(w,b); w -= pair; b -= pair; cout << ans * 100 + pair * 10 + w + b << endl; return 0; }