結果

問題 No.957 植林
ユーザー glretoglreto
提出日時 2021-03-11 18:39:59
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 610 ms / 2,000 ms
コード長 3,371 bytes
コンパイル時間 1,362 ms
コンパイル使用メモリ 112,400 KB
実行使用メモリ 12,672 KB
最終ジャッジ日時 2024-04-21 07:43:05
合計ジャッジ時間 16,950 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 44 ms
11,392 KB
testcase_04 AC 42 ms
10,752 KB
testcase_05 AC 44 ms
11,392 KB
testcase_06 AC 51 ms
11,904 KB
testcase_07 AC 42 ms
11,136 KB
testcase_08 AC 37 ms
11,264 KB
testcase_09 AC 37 ms
11,648 KB
testcase_10 AC 39 ms
11,904 KB
testcase_11 AC 38 ms
11,392 KB
testcase_12 AC 38 ms
11,520 KB
testcase_13 AC 32 ms
9,728 KB
testcase_14 AC 40 ms
12,032 KB
testcase_15 AC 36 ms
11,392 KB
testcase_16 AC 32 ms
9,728 KB
testcase_17 AC 33 ms
11,008 KB
testcase_18 AC 449 ms
11,392 KB
testcase_19 AC 477 ms
11,520 KB
testcase_20 AC 487 ms
11,904 KB
testcase_21 AC 514 ms
11,776 KB
testcase_22 AC 538 ms
12,032 KB
testcase_23 AC 552 ms
12,288 KB
testcase_24 AC 561 ms
12,672 KB
testcase_25 AC 607 ms
12,544 KB
testcase_26 AC 603 ms
12,544 KB
testcase_27 AC 605 ms
12,544 KB
testcase_28 AC 606 ms
12,544 KB
testcase_29 AC 608 ms
12,416 KB
testcase_30 AC 603 ms
12,416 KB
testcase_31 AC 455 ms
11,392 KB
testcase_32 AC 475 ms
11,264 KB
testcase_33 AC 483 ms
11,776 KB
testcase_34 AC 504 ms
11,776 KB
testcase_35 AC 534 ms
11,904 KB
testcase_36 AC 552 ms
12,288 KB
testcase_37 AC 565 ms
12,544 KB
testcase_38 AC 610 ms
12,672 KB
testcase_39 AC 603 ms
12,544 KB
testcase_40 AC 604 ms
12,544 KB
testcase_41 AC 26 ms
12,672 KB
testcase_42 AC 26 ms
12,544 KB
testcase_43 AC 55 ms
12,544 KB
testcase_44 AC 56 ms
12,544 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include<iomanip>
#include<functional>
#include<algorithm>
#include<deque>
#include<math.h>
#include<set>
#include<string>
#include<queue>
#include<complex>
#include<numeric>
#include<stack>
#include<map>
using namespace std;
#define rep(i,n) for(ll i = 0;i<n;i++)
#define req(i,n) for(ll i = 1;i<=n;i++)
#define rrep(i,n) for(int i = n-1;i>=0;i--)
#define ALL(a) a.begin(),a.end()
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
typedef long long ll;
typedef long double ld;
const int MAX = 510000;
const int MOD = 1e9 + 7;
struct Dinic {
private:
    struct edge {
        int to;
        ll cap;
        int rev;
        bool isrev;
        int idx;
    };
    vector< vector< edge > > graph;
    vector< int > min_cost, iter;
    bool bfs(int s, int t) {
        min_cost.assign(graph.size(), -1);
        queue< int > que;
        min_cost[s] = 0;
        que.push(s);
        while (!que.empty() && min_cost[t] == -1) {
            int p = que.front();
            que.pop();
            for (auto& e : graph[p]) {
                if (e.cap > 0 && min_cost[e.to] == -1) {
                    min_cost[e.to] = min_cost[p] + 1;
                    que.push(e.to);
                }
            }
        }return min_cost[t] != -1;
    }
    ll dfs(int idx, const int t, ll flow) {
        if (idx == t) return flow;
        for (int& i = iter[idx]; i < graph[idx].size(); i++) {
            edge& e = graph[idx][i];
            if (e.cap > 0 && min_cost[idx] < min_cost[e.to]) {
                ll d = dfs(e.to, t, min(flow, e.cap));
                if (d > 0) {
                    e.cap -= d;
                    graph[e.to][e.rev].cap += d;
                    return d;
                }
            }
        }return 0;
    }
public:
    Dinic(int V) : graph(V) {}
    void add_edge(int from, int to, ll cap, int idx = -1) {
        graph[from].push_back({ to, cap, (int)graph[to].size(), false, idx });
        graph[to].push_back({ from, 0, (int)graph[from].size() - 1, true, idx });
    }
    ll max_flow(int s, int t) {
        ll flow = 0;
        while (bfs(s, t)) {
            iter.assign(graph.size(), 0);
            ll f = 0;
            while ((f = dfs(s, t, 1e9 + 6)) > 0) flow += f;
        }return flow;
    }void output() {
        for (int i = 0; i < graph.size();i++) {
            for (auto& e : graph[i]) {
                if (e.isrev) continue;
                auto& rev_e = graph[e.to][e.rev];
                cout << i << "->" << e.to << " (flow: " << rev_e.cap << "/" << e.cap + rev_e.cap << ")" << endl;
            }
        }
    }
}; int dx[4] = { -1,1,0,0 }, dy[4] = { 0,0,1,-1 };
int main() {
    int h, w; cin >> h >> w; vector<vector<ll>> G(h, vector<ll>(w));
    vector<ll> r(h), c(w); Dinic dn(h + w + 2);
    int s = h + w, t = h + w + 1;
    rep(i, h) {
        ll sum = 0;
        rep(j, w) {
            cin >> G[i][j]; dn.add_edge(i, j + h, G[i][j]);
            sum += G[i][j];
        }dn.add_edge(s, i, sum);
    }ll ans = 0;
    rep(i, h) {
        cin >> r[i]; ans += r[i];
        dn.add_edge(i, t, r[i]);
    }rep(j, w) {
        cin >> c[j]; ans += c[j];
        dn.add_edge(j + h, t, c[j]);
    }cout << ans - dn.max_flow(s, t) << endl;
}
0