結果

問題 No.957 植林
ユーザー yosupotyosupot
提出日時 2019-12-19 23:52:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 7,595 bytes
コンパイル時間 1,480 ms
コンパイル使用メモリ 132,784 KB
実行使用メモリ 8,204 KB
最終ジャッジ日時 2023-09-21 07:46:11
合計ジャッジ時間 10,542 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 16 ms
7,676 KB
testcase_04 AC 16 ms
7,396 KB
testcase_05 AC 15 ms
7,476 KB
testcase_06 AC 19 ms
7,880 KB
testcase_07 AC 17 ms
7,504 KB
testcase_08 AC 8 ms
7,600 KB
testcase_09 AC 8 ms
7,540 KB
testcase_10 AC 9 ms
7,696 KB
testcase_11 AC 9 ms
7,400 KB
testcase_12 AC 9 ms
7,556 KB
testcase_13 AC 7 ms
6,336 KB
testcase_14 AC 9 ms
7,720 KB
testcase_15 AC 8 ms
7,544 KB
testcase_16 AC 7 ms
6,240 KB
testcase_17 AC 8 ms
7,540 KB
testcase_18 AC 248 ms
7,472 KB
testcase_19 AC 257 ms
7,548 KB
testcase_20 AC 266 ms
7,616 KB
testcase_21 AC 281 ms
7,812 KB
testcase_22 AC 298 ms
7,664 KB
testcase_23 AC 309 ms
7,612 KB
testcase_24 AC 312 ms
8,204 KB
testcase_25 AC 337 ms
7,880 KB
testcase_26 AC 332 ms
8,008 KB
testcase_27 AC 332 ms
8,008 KB
testcase_28 AC 332 ms
8,000 KB
testcase_29 AC 336 ms
8,200 KB
testcase_30 AC 331 ms
8,064 KB
testcase_31 AC 254 ms
7,616 KB
testcase_32 AC 257 ms
7,436 KB
testcase_33 AC 266 ms
7,616 KB
testcase_34 AC 282 ms
7,612 KB
testcase_35 AC 298 ms
7,800 KB
testcase_36 AC 312 ms
7,708 KB
testcase_37 AC 314 ms
7,876 KB
testcase_38 AC 337 ms
8,064 KB
testcase_39 AC 332 ms
8,128 KB
testcase_40 AC 332 ms
7,972 KB
testcase_41 AC 8 ms
8,076 KB
testcase_42 AC 8 ms
8,180 KB
testcase_43 AC 9 ms
8,080 KB
testcase_44 AC 10 ms
7,968 KB
testcase_45 AC 2 ms
4,380 KB
testcase_46 AC 1 ms
4,380 KB
testcase_47 AC 1 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#pragma GCC optimize("Ofast")
//#pragma GCC target("avx")
//#undef LOCAL
       
       
#include <algorithm>
       
#include <array>
       
#include <cassert>
       
#include <complex>
       
#include <cstdio>
       
#include <cstring>
       
#include <iostream>
       
#include <map>
       
#include <numeric>
       
#include <queue>
       
#include <set>
       
#include <string>
       
#include <unordered_map>
       
#include <unordered_set>
       
#include <vector>
using namespace std;
using uint = unsigned int;
using ll = long long;
using ull = unsigned long long;
constexpr ll TEN(int n) { return (n == 0) ? 1 : 10 * TEN(n - 1); }
template <class T> using V = vector<T>;
template <class T> using VV = V<V<T>>;
template <class T, class U>
ostream& operator<<(ostream& os, const pair<T, U>& p) {
    return os << "P(" << p.first << ", " << p.second << ")";
}
template <class T> ostream& operator<<(ostream& os, const V<T>& v) {
    os << "[";
    for (auto d : v) os << d << ", ";
    return os << "]";
}
       
struct Scanner {
    FILE* fp = nullptr;
    char line[(1 << 15) + 1];
    size_t st = 0, ed = 0;
    void reread() {
        memmove(line, line + st, ed - st);
        ed -= st;
        st = 0;
        ed += fread(line + ed, 1, (1 << 15) - ed, fp);
        line[ed] = '\0';
    }
    bool succ() {
        while (true) {
            if (st == ed) {
                reread();
                if (st == ed) return false;
            }
            while (st != ed && isspace(line[st])) st++;
            if (st != ed) break;
        }
        if (ed - st <= 50) reread();
        return true;
    }
    template <class T, enable_if_t<is_same<T, string>::value, int> = 0>
    bool read_single(T& ref) {
        if (!succ()) return false;
        while (true) {
            size_t sz = 0;
            while (st + sz < ed && !isspace(line[st + sz])) sz++;
            ref.append(line + st, sz);
            st += sz;
            if (!sz || st != ed) break;
            reread();
        }
        return true;
    }
    template <class T, enable_if_t<is_integral<T>::value, int> = 0>
    bool read_single(T& ref) {
        if (!succ()) return false;
        bool neg = false;
        if (line[st] == '-') {
            neg = true;
            st++;
        }
        ref = T(0);
        while (isdigit(line[st])) {
            ref = 10 * ref + (line[st++] - '0');
        }
        if (neg) ref = -ref;
        return true;
    }
    template <class T> bool read_single(V<T>& ref) {
        for (auto& d : ref) {
            if (!read_single(d)) return false;
        }
        return true;
    }
    void read() {}
    template <class H, class... T> void read(H& h, T&... t) {
        bool f = read_single(h);
        assert(f);
        read(t...);
    }
    Scanner(FILE* _fp) : fp(_fp) {}
};
struct Printer {
  public:
    template <bool F = false> void write() {}
    template <bool F = false, class H, class... T>
    void write(const H& h, const T&... t) {
        if (F) write_single(' ');
        write_single(h);
        write<true>(t...);
    }
    template <class... T> void writeln(const T&... t) {
        write(t...);
        write_single('\n');
    }
    Printer(FILE* _fp) : fp(_fp) {}
    ~Printer() { flush(); }
  private:
    static constexpr size_t SIZE = 1 << 15;
    FILE* fp;
    char line[SIZE], small[50];
    size_t pos = 0;
    void flush() {
        fwrite(line, 1, pos, fp);
        pos = 0;
    }
    void write_single(const char& val) {
        if (pos == SIZE) flush();
        line[pos++] = val;
    }
    template <class T, enable_if_t<is_integral<T>::value, int> = 0>
    void write_single(T val) {
        if (pos > (1 << 15) - 50) flush();
        if (val == 0) {
            write_single('0');
            return;
        }
        if (val < 0) {
            write_single('-');
            val = -val; // todo min
        }
        size_t len = 0;
        while (val) {
            small[len++] = char('0' + (val % 10));
            val /= 10;
        }
        reverse(small, small + len);
        memcpy(line + pos, small, len);
        pos += len;
    }
    void write_single(const string& s) {
        for (char c : s) write_single(c);
    }
    void write_single(const char* s) {
        size_t len = strlen(s);
        for (size_t i = 0; i < len; i++) write_single(s[i]);
    }
    template <class T> void write_single(const V<T>& val) {
        auto n = val.size();
        for (size_t i = 0; i < n; i++) {
            if (i) write_single(' ');
            write_single(val[i]);
        }
    }
};
/*
struct E {
    int to, rev, cap;
};
VV<E> g;
auto add_edge = [&](int from, int to, int cap) {
    g[from].push_back(E{to, int(g[to].size()), cap});
    g[to].push_back(E{from, int(g[from].size())-1, 0});
};
*/
template<class C>
struct MaxFlow {
    C flow;
    V<char> dual; // false: S-side true: T-side
};
template<class C, class E>
struct MFExec {
    static constexpr C INF = numeric_limits<C>::max();
    C eps;
    VV<E>& g;
    int s, t;
    V<int> level, iter;
    C dfs(int v, C f) {
        if (v == t) return f;
        C res = 0;
        for (int& i = iter[v]; i < int(g[v].size()); i++) {
            E& e = g[v][i];
            if (e.cap <= eps || level[v] >= level[e.to]) continue;
            C d = dfs(e.to, min(f, e.cap));
            e.cap -= d;
            g[e.to][e.rev].cap += d;
            res += d;
            f -= d;
            if (f == 0) break;
        }
        return res;
    }
    MaxFlow<C> info;
    MFExec(VV<E>& _g, int _s, int _t, C _eps)
        : eps(_eps), g(_g), s(_s), t(_t) {
        int N = int(g.size());
        C& flow = (info.flow = 0);
        while (true) {
            queue<int> que;
            level = V<int>(N, -1);
            level[s] = 0;
            que.push(s);
            while (!que.empty()) {
                int v = que.front(); que.pop();
                for (E e: g[v]) {
                    if (e.cap <= eps || level[e.to] >= 0) continue;
                    level[e.to] = level[v] + 1;
                    que.push(e.to);
                }
            }
            if (level[t] == -1) break;
            iter = V<int>(N, 0);
            while (true) {
                C f = dfs(s, INF);
                if (!f) break;
                flow += f;
            }
        }
        for (int i = 0; i < N; i++) info.dual.push_back(level[i] == -1);
    }
};
template<class C, class E>
MaxFlow<C> get_mf(VV<E>& g, int s, int t, C eps) {
    return MFExec<C, E>(g, s, t, eps).info;
}
Scanner sc = Scanner(stdin);
Printer pr = Printer(stdout);
int main() {
    int h, w;
    sc.read(h, w);
    struct E {
        int to, rev; ll cap;
    };
    VV<E> g(2 + h + w);
    int sv = h + w, tv = sv + 1;
    auto add_edge = [&](int from, int to, ll cap) {
        g[from].push_back(E{to, int(g[to].size()), cap});
        g[to].push_back(E{from, int(g[from].size())-1, 0});
    };
    ll off = 0;
    V<ll> ho(h), we(w);
    for (int i = 0; i < h; i++) {
        for (int j = 0; j < w; j++) {
            ll x;
            sc.read(x);
            add_edge(i, h + j, x);
            ho[i] += x;
        }
    }
    for (int i = 0; i < h; i++) {
        ll y;
        sc.read(y);
        ho[i] -= y;
        if (ho[i] < 0) {
            off += -ho[i];
            add_edge(i, tv, -ho[i]);
        } else {
            add_edge(sv, i, ho[i]);
        }
    }
    for (int i = 0; i < w; i++) {
        ll y;
        sc.read(y);
        off += y;
        add_edge(h + i, tv, y);
    }
    off -= get_mf<ll>(g, sv, tv, 0LL).flow;
    pr.writeln(off);
    return 0;
}
0