結果

問題 No.957 植林
ユーザー niuezniuez
提出日時 2020-05-08 23:22:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 3,571 bytes
コンパイル時間 1,790 ms
コンパイル使用メモリ 177,752 KB
実行使用メモリ 88,736 KB
最終ジャッジ日時 2023-09-17 03:30:29
合計ジャッジ時間 18,370 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 801 ms
53,616 KB
testcase_04 AC 1,818 ms
74,124 KB
testcase_05 AC 148 ms
27,056 KB
testcase_06 TLE -
testcase_07 WA -
testcase_08 AC 53 ms
25,120 KB
testcase_09 AC 52 ms
25,584 KB
testcase_10 AC 58 ms
26,252 KB
testcase_11 AC 54 ms
25,368 KB
testcase_12 WA -
testcase_13 AC 41 ms
22,164 KB
testcase_14 AC 55 ms
27,308 KB
testcase_15 AC 47 ms
25,336 KB
testcase_16 AC 44 ms
21,968 KB
testcase_17 AC 45 ms
23,752 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 TLE -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <vector>
#include <iostream>

struct goldberg_tarjan {
  using cap_type = long long;
  struct edge {
    int to;
    cap_type cap;
    int rev;
    edge(int t, cap_type c, int r): to(t), cap(c), rev(r) {}
  };

  int N;
  std::vector<std::vector<edge>> G;
  std::vector<cap_type> exc;
  std::vector<int> h;
  const cap_type INF = 1e18;

  goldberg_tarjan(int n): N(n), G(n) {}
  
  void add_edge(int from, int to, cap_type cap, cap_type rev_cap = 0) {
    G[from].emplace_back(to, cap, (int)(G[to].size()));
    G[to].emplace_back(from, rev_cap, (int)(G[from].size() - 1));
  }

  void push(int from, edge& e) {
    cap_type fl = std::min(exc[from], e.cap);
    e.cap -= fl;
    G[e.to][e.rev].cap += fl;
    exc[from] -= fl;
    exc[e.to] += fl;
  }

  void relabel(int v) {
    h[v] = N - 1;
    for(const auto& e: G[v]) {
      if(e.cap > 0 && h[v] > h[e.to]) {
        h[v] = h[e.to];
      }
    }
    h[v]++;
  }

  std::vector<int> Q;
  void global_relabeling(int t) {
    int qi = 0, qr = 0;
    Q[qr++] = t;
    h.assign(N, N - 1);
    h[t] = 0;
    while(qi < qr) {
      int v = Q[qi++];
      for(const auto& e: G[v]) {
        if(G[e.to][e.rev].cap > 0 && h[v] + 1 < h[e.to]) {
          h[e.to] = h[v] + 1;
          Q[qr++] = e.to;
        }
      }
    }
  }

  cap_type max_flow(int s, int t) {
    exc.assign(N, 0);
    exc[s] = INF;
    h.assign(N, 0);
    Q.resize(N);
    int cnt = 0;

    global_relabeling(t);

    std::vector<std::vector<int>> que(N);
    std::vector<int> qi(N);
    que[h[s]].push_back(s);

    for(int di = h[s]; di >= 0;) {
      if(qi[di] == que[di].size()) { di--; continue; }
      int v = que[di][qi[di]++];
      if(exc[v] == 0 || v == t) continue;
      for(auto& e: G[v]) {
        if(e.cap > 0 && h[v] == h[e.to] + 1) {
          push(v, e);
          if(exc[e.to] > 0 && e.to != t) {
            que[h[e.to]].push_back(e.to);
          }
        }
      }
      if(exc[v] == 0) continue;
      relabel(v);
      if(h[v] < N) {
        di = h[v];
        que[h[v]].push_back(v);
      }

      if(++cnt % N == 0) {
        global_relabeling(t);
      }
    }
    return exc[t];
  }
};


#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
#define rep(i,s,e) for(i64 (i) = (s);(i) < (e);(i)++)
#define all(x) x.begin(),x.end()

template<class T>
static inline std::vector<T> ndvec(size_t&& n, T val) noexcept {
  return std::vector<T>(n, std::forward<T>(val));
}

template<class... Tail>
static inline auto ndvec(size_t&& n, Tail&&... tail) noexcept {
  return std::vector<decltype(ndvec(std::forward<Tail>(tail)...))>(n, ndvec(std::forward<Tail>(tail)...));
}

template<class T, class Cond>
struct chain {
  Cond cond; chain(Cond cond) : cond(cond) {}
  bool operator()(T& a, const T& b) const {
    if(cond(a, b)) { a = b; return true; }
    return false;
  }
};
template<class T, class Cond>
chain<T, Cond> make_chain(Cond cond) { return chain<T, Cond>(cond); }


int main() {
  cin.tie(nullptr);
  std::ios::sync_with_stdio(false);
  int H, W;
  cin >> H >> W;

  goldberg_tarjan gt(H * W + H + W + 2);
  int s = H * W + H + W;
  int t = s + 1;
  rep(i,0,H) rep(j,0,W) {
    i64 g;
    cin >> g;
    gt.add_edge(s, i * W + j, g);
    gt.add_edge(i * W + j, H * W + i, (i64)(1e18));
    gt.add_edge(i * W + j, H * W + H + j, (i64)(1e18));
  }
  i64 sum = 0;
  rep(i,0,H) {
    i64 r;
    cin >> r;
    sum += r;
    gt.add_edge(H * W + i, t, r);
  }
  rep(i,0,W) {
    i64 r;
    cin >> r;
    sum += r;
    gt.add_edge(H * W + H + i, t, r);
  }
  cout << sum - gt.max_flow(s, t) << "\n";
}
0