結果
問題 | No.421 しろくろチョコレート |
ユーザー | ferin |
提出日時 | 2019-10-25 15:50:32 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 9 ms / 2,000 ms |
コード長 | 5,018 bytes |
コンパイル時間 | 2,254 ms |
コンパイル使用メモリ | 182,452 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-09-23 07:24:26 |
合計ジャッジ時間 | 3,617 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,816 KB |
testcase_01 | AC | 4 ms
6,816 KB |
testcase_02 | AC | 3 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 3 ms
6,940 KB |
testcase_05 | AC | 3 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 4 ms
6,944 KB |
testcase_08 | AC | 3 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 3 ms
6,940 KB |
testcase_11 | AC | 3 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,940 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 7 ms
6,940 KB |
testcase_17 | AC | 7 ms
6,944 KB |
testcase_18 | AC | 8 ms
6,940 KB |
testcase_19 | AC | 2 ms
6,944 KB |
testcase_20 | AC | 5 ms
6,944 KB |
testcase_21 | AC | 6 ms
6,940 KB |
testcase_22 | AC | 3 ms
6,944 KB |
testcase_23 | AC | 2 ms
6,940 KB |
testcase_24 | AC | 2 ms
6,940 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 2 ms
6,940 KB |
testcase_27 | AC | 2 ms
6,940 KB |
testcase_28 | AC | 4 ms
6,940 KB |
testcase_29 | AC | 4 ms
6,940 KB |
testcase_30 | AC | 4 ms
6,944 KB |
testcase_31 | AC | 6 ms
6,940 KB |
testcase_32 | AC | 4 ms
6,944 KB |
testcase_33 | AC | 5 ms
6,944 KB |
testcase_34 | AC | 3 ms
6,944 KB |
testcase_35 | AC | 2 ms
6,944 KB |
testcase_36 | AC | 3 ms
6,940 KB |
testcase_37 | AC | 7 ms
6,940 KB |
testcase_38 | AC | 8 ms
6,944 KB |
testcase_39 | AC | 3 ms
6,944 KB |
testcase_40 | AC | 4 ms
6,944 KB |
testcase_41 | AC | 2 ms
6,940 KB |
testcase_42 | AC | 2 ms
6,940 KB |
testcase_43 | AC | 3 ms
6,940 KB |
testcase_44 | AC | 4 ms
6,940 KB |
testcase_45 | AC | 2 ms
6,944 KB |
testcase_46 | AC | 3 ms
6,948 KB |
testcase_47 | AC | 4 ms
6,940 KB |
testcase_48 | AC | 5 ms
6,944 KB |
testcase_49 | AC | 4 ms
6,940 KB |
testcase_50 | AC | 2 ms
6,940 KB |
testcase_51 | AC | 4 ms
6,940 KB |
testcase_52 | AC | 3 ms
6,940 KB |
testcase_53 | AC | 2 ms
6,944 KB |
testcase_54 | AC | 3 ms
6,944 KB |
testcase_55 | AC | 2 ms
6,940 KB |
testcase_56 | AC | 2 ms
6,944 KB |
testcase_57 | AC | 2 ms
6,944 KB |
testcase_58 | AC | 5 ms
6,944 KB |
testcase_59 | AC | 3 ms
6,940 KB |
testcase_60 | AC | 9 ms
6,940 KB |
testcase_61 | AC | 8 ms
6,940 KB |
testcase_62 | AC | 2 ms
6,940 KB |
testcase_63 | AC | 2 ms
6,944 KB |
testcase_64 | AC | 2 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; using PII = pair<ll, ll>; #define FOR(i, a, n) for (ll i = (ll)a; i < (ll)n; ++i) #define REP(i, n) FOR(i, 0, n) #define ALL(x) x.begin(), x.end() template<typename T> void chmin(T &a, const T &b) { a = min(a, b); } template<typename T> void chmax(T &a, const T &b) { a = max(a, b); } struct FastIO {FastIO() { cin.tie(0); ios::sync_with_stdio(0); }}fastiofastio; #ifdef DEBUG_ #include "../program_contest_library/memo/dump.hpp" #else #define dump(...) #endif const ll INF = 1LL<<60; template<class T> struct dinic { struct edge{ int to; T cap; int rev; bool isrev; }; vector<vector<edge>> G; vector<int> level, iter; void bfs(int s) { level.assign(G.size(), -1); queue<int> que; level[s] = 0; que.push(s); while(que.size()) { int v = que.front(); que.pop(); for(auto i: G[v]) { if(i.cap > 0 && level[i.to] < 0) { level[i.to] = level[v] + 1; que.push(i.to); } } } } T dfs(int v, const int t, T f) { if(v == t) return f; for(int &i = iter[v]; i<(ll)G[v].size(); ++i) { edge &e = G[v][i]; if(e.cap > 0 && level[v] < level[e.to]) { T d = dfs(e.to, t, min(f, e.cap)); if(d > 0) { e.cap -= d; G[e.to][e.rev].cap += d; return d; } } } return 0; } dinic() {} dinic(int n) : G(n), level(n), iter(n) {} void add_edge(int from, int to, T cap) { G[from].push_back({to, cap, (int)G[to].size(), false}); G[to].push_back({from, 0, (int)G[from].size()-1, true}); } // sからtへ流量fを流す T maxflow(int s, int t, T f = 1LL<<30) { T flow = 0; while(1) { bfs(s); if(level[t] < 0) return flow; iter.assign(G.size(), 0); T tmp; while((tmp = dfs(s, t, f)) > 0) flow += tmp; } } // sからtへ1流す T flow(int s, int t) { bfs(s); if(level[t] < 0) return 0; iter.assign(G.size(), 0); return dfs(s, t, 1); } // 始点,終点tのフローで辺e=(from,to)の容量を1増やしたときの最大流の変化 // 並列辺はたぶんバグる T add(int from, int to, int s, int t) { for(auto &e: G[from]) { if(e.to == to && !e.isrev) { e.cap++; break; } } return flow(s, t); } // 始点s,終点tのフローで辺e=(from,to)の容量を1減らしたときの最大流の変化 // 並列辺はたぶんバグる T sub(int from, int to, int s, int t) { for(auto &e: G[from]) { if(e.to == to && !e.isrev) { T diff = 0; // 辺(from,to)で容量いっぱいに流れている if(e.cap == 0) { // 残余グラフでfrom→toのパスがない if(flow(from, to) == 0) { flow(t, to); flow(from, s); diff = -1; } G[e.to][e.rev].cap--; } else { e.cap--; } return diff; } } assert(false); // 存在しない辺を減らそうとした } friend ostream &operator <<(ostream& out, const dinic& a){ out << endl; for(int i = 0; i < (int)a.G.size(); i++) { for(auto &e : a.G[i]) { if(e.isrev) continue; auto &rev_e = a.G[e.to][e.rev]; out << i << "->" << e.to << " (flow: " << rev_e.cap << "/" << e.cap + rev_e.cap << ")" << endl; } } return out; } }; int main(void) { ll h, w; cin >> h >> w; vector<string> a(h); REP(i, h) cin >> a[i]; dinic<ll> graph(h*w+2); ll s = h*w, t = s+1; ll bnum = 0, wnum = 0; REP(i, h) REP(j, w) { if(a[i][j] == 'w') { graph.add_edge(s, i*w+j, 1); wnum++; } else if(a[i][j] == 'b') { graph.add_edge(i*w+j, t, 1); bnum++; } if(a[i][j]!='w') continue; REP(y, h) REP(x, w) { if(a[y][x]!='b') continue; if(abs(y-i)+abs(x-j) == 1) { graph.add_edge(i*w+j, y*w+x, 1); } } } ll ret = graph.maxflow(s, t); REP(i, h) REP(j, w) { if(a[i][j] != 'w') continue; for(auto e: graph.G[i*w+j]) { if(!e.isrev && e.cap==0) { wnum--; bnum--; } } } ll ma = max(wnum, bnum), mi = min(wnum, bnum); cout << ret*100 + mi*10 + ma-mi << endl; return 0; }