結果

問題 No.957 植林
ユーザー downerdowner
提出日時 2024-08-03 05:58:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 594 ms / 2,000 ms
コード長 3,525 bytes
コンパイル時間 3,390 ms
コンパイル使用メモリ 260,452 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-08-03 05:58:59
合計ジャッジ時間 18,997 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 39 ms
11,008 KB
testcase_04 AC 40 ms
10,624 KB
testcase_05 AC 38 ms
11,136 KB
testcase_06 AC 43 ms
11,520 KB
testcase_07 AC 37 ms
10,880 KB
testcase_08 AC 33 ms
11,008 KB
testcase_09 AC 33 ms
11,392 KB
testcase_10 AC 41 ms
11,520 KB
testcase_11 AC 34 ms
11,264 KB
testcase_12 AC 34 ms
11,136 KB
testcase_13 AC 28 ms
9,472 KB
testcase_14 AC 36 ms
11,776 KB
testcase_15 AC 31 ms
11,136 KB
testcase_16 AC 29 ms
9,344 KB
testcase_17 AC 29 ms
10,752 KB
testcase_18 AC 435 ms
11,136 KB
testcase_19 AC 463 ms
11,264 KB
testcase_20 AC 460 ms
11,520 KB
testcase_21 AC 469 ms
11,776 KB
testcase_22 AC 538 ms
11,904 KB
testcase_23 AC 518 ms
11,904 KB
testcase_24 AC 586 ms
11,904 KB
testcase_25 AC 569 ms
12,800 KB
testcase_26 AC 594 ms
12,672 KB
testcase_27 AC 559 ms
12,672 KB
testcase_28 AC 557 ms
12,672 KB
testcase_29 AC 585 ms
12,672 KB
testcase_30 AC 557 ms
12,800 KB
testcase_31 AC 449 ms
11,136 KB
testcase_32 AC 438 ms
11,392 KB
testcase_33 AC 482 ms
11,520 KB
testcase_34 AC 473 ms
11,776 KB
testcase_35 AC 511 ms
11,904 KB
testcase_36 AC 532 ms
11,776 KB
testcase_37 AC 520 ms
11,904 KB
testcase_38 AC 582 ms
12,800 KB
testcase_39 AC 554 ms
12,672 KB
testcase_40 AC 588 ms
12,800 KB
testcase_41 AC 23 ms
12,544 KB
testcase_42 AC 23 ms
12,544 KB
testcase_43 AC 47 ms
12,672 KB
testcase_44 AC 47 ms
12,544 KB
testcase_45 AC 2 ms
6,940 KB
testcase_46 AC 1 ms
6,940 KB
testcase_47 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

template<typename flow_t>
struct Dinic{
    struct Edge{
        int from, to, rev;
        flow_t cap;
        bool is_rev;
        Edge(int f, int t, int r, flow_t c, bool b) : from(f), to(t), rev(r), cap(c), is_rev(b) {}
    };

    vector<vector<Edge>> G;
    vector<int> dist;
    vector<int> iter;
    const flow_t INF = numeric_limits<flow_t>::max();

    Dinic(int N) : G(N), dist(N), iter(N) {}

    void add_edge(int from, int to, flow_t cap) {
        int fromrev = G[from].size();
        int torev = G[to].size();
        G[from].push_back(Edge(from, to, torev, cap, 0));
        G[to].push_back(Edge(to, from, fromrev, 0, 1));
    }

    void bfs(int s) {
        fill(dist.begin(), dist.end(), -1);
        dist[s] = 0;
        queue<int> q;
        q.push(s);
        while(q.size()) {
            int v = q.front(); q.pop();
            for(const Edge& e: G[v]) {
                if(e.cap == 0 || dist[e.to] >= 0) continue;
                dist[e.to] = dist[v] + 1;
                q.push(e.to);
            }
        }
    }

    flow_t dfs(int v, int t, flow_t f) {
        if(v == t) return f;
        if(f == 0) return 0;

        for(int& i = iter[v]; i < (int)G[v].size(); i++) {
            Edge& e = G[v][i];
            if(e.cap == 0 || dist[v] >= dist[e.to]) continue;
            flow_t flow = dfs(e.to, t, min(f, e.cap));
            if(flow == 0) continue;

            e.cap -= flow;
            G[e.to][e.rev].cap += flow;

            return flow;
        }
        return 0;
    }

    flow_t max_flow(int s, int t) {
        flow_t ret = 0;

        while(true) {
            bfs(s);
            if(dist[t] < 0) return ret;

            fill(iter.begin(), iter.end(), 0);
            while(true) {
                flow_t flow = dfs(s, t, INF);
                if(flow == 0) break;
                ret += flow;
            }
        }

        return 0;
    }

    vector<Edge> edges() {
        vector<Edge> ret;
        for(const auto& v : G) {
            for(const auto& e : v) {
                if(e.is_rev) continue;
                ret.push_back(e);
            }
        }
        return ret;
    }

    void debug() {
        for(const auto& v : G) {
            for(const auto& e : v) {
                if(e.is_rev) continue;
                cout << e.from << " -> " << e.to << " (flow : " << G[e.to][e.rev].cap << " / "
                    << e.cap + G[e.to][e.rev].cap << ")" << endl;
            }
        }
    }
};


int main() {
    int H, W;
    cin >> H >> W;

    vector<vector<int>> G(H, vector<int> (W));

    Dinic<long long> dinic(H + W + 2);
    int s = H + W, t = H + W + 1;

    for(int i = 0; i < H; i++) {
        for(int j = 0; j < W; j++) {
            cin >> G[i][j];

            // c to r
            dinic.add_edge(i, H + j, G[i][j]);
        }
    }

    vector<int> R(H), C(W);
    long long sum = 0;

    for(int i = 0; i < H; i++) {
        cin >> R[i];

        // s to r
        long long cost = 0;
        for(int j = 0; j < W; j++) {
            cost += G[i][j];
        }
        dinic.add_edge(s, i, cost);

        sum += R[i];

        // r to t
        dinic.add_edge(i, t, R[i]);
    }
    for(int i = 0; i < W; i++) {
        cin >> C[i];
        sum += C[i];

        // s to c
        dinic.add_edge(s, H + i, 0);

        // c to t
        dinic.add_edge(H + i, t, C[i]);
    }

    long long ans = sum - dinic.max_flow(s, t);

    cout << ans << endl;

    // dinic.debug();

    return 0;
}
0