結果

問題 No.957 植林
ユーザー bokusunnybokusunny
提出日時 2022-05-01 23:48:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 354 ms / 2,000 ms
コード長 1,080 bytes
コンパイル時間 2,478 ms
コンパイル使用メモリ 215,904 KB
実行使用メモリ 9,268 KB
最終ジャッジ日時 2024-07-01 01:23:58
合計ジャッジ時間 12,392 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 23 ms
8,592 KB
testcase_04 AC 22 ms
8,380 KB
testcase_05 AC 22 ms
8,612 KB
testcase_06 AC 25 ms
8,872 KB
testcase_07 AC 23 ms
8,348 KB
testcase_08 AC 18 ms
8,516 KB
testcase_09 AC 18 ms
8,648 KB
testcase_10 AC 19 ms
8,752 KB
testcase_11 AC 18 ms
8,648 KB
testcase_12 AC 18 ms
8,540 KB
testcase_13 AC 15 ms
7,592 KB
testcase_14 AC 19 ms
8,880 KB
testcase_15 AC 17 ms
8,492 KB
testcase_16 AC 16 ms
7,456 KB
testcase_17 AC 16 ms
8,376 KB
testcase_18 AC 254 ms
8,620 KB
testcase_19 AC 266 ms
8,756 KB
testcase_20 AC 271 ms
8,876 KB
testcase_21 AC 284 ms
8,752 KB
testcase_22 AC 302 ms
8,884 KB
testcase_23 AC 306 ms
9,136 KB
testcase_24 AC 317 ms
9,128 KB
testcase_25 AC 346 ms
9,260 KB
testcase_26 AC 342 ms
9,264 KB
testcase_27 AC 344 ms
9,264 KB
testcase_28 AC 345 ms
9,264 KB
testcase_29 AC 354 ms
9,136 KB
testcase_30 AC 348 ms
9,140 KB
testcase_31 AC 253 ms
8,752 KB
testcase_32 AC 271 ms
8,752 KB
testcase_33 AC 267 ms
8,880 KB
testcase_34 AC 285 ms
8,752 KB
testcase_35 AC 294 ms
8,880 KB
testcase_36 AC 309 ms
9,008 KB
testcase_37 AC 317 ms
9,256 KB
testcase_38 AC 345 ms
9,268 KB
testcase_39 AC 347 ms
9,136 KB
testcase_40 AC 350 ms
9,264 KB
testcase_41 AC 15 ms
9,268 KB
testcase_42 AC 15 ms
9,264 KB
testcase_43 AC 21 ms
9,260 KB
testcase_44 AC 22 ms
9,260 KB
testcase_45 AC 2 ms
6,944 KB
testcase_46 AC 2 ms
6,940 KB
testcase_47 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define bokusunny ios::sync_with_stdio(false), cin.tie(nullptr);

#include <atcoder/maxflow>
using namespace atcoder;

void solve() {
  int H, W;
  cin >> H >> W;
  using Grid = vector<vector<int>>;
  Grid grid(H, vector<int>(W));
  for (int i = 0; i < H; i++) {
    for (int j = 0; j < W; j++) {
      cin >> grid[i][j];
    }
  }
  vector<int> R(H);
  for (int i = 0; i < H; i++) cin >> R[i];
  vector<int> C(W);
  for (int i = 0; i < W; i++) cin >> C[i];

  using Cap = long long;
  mf_graph<Cap> G(H + W + 2);
  const int s = H + W, t = H + W + 1;
  for (int h = 0; h < H; h++) {
    G.add_edge(s, h, R[h]);
    long long tot = 0;
    for (auto &g : grid[h]) tot += g;
    G.add_edge(h, t, tot);
  }
  for (int w = 0; w < W; w++) {
    G.add_edge(s, H + w, C[w]);
    for (int h = 0; h < H; h++) {
      G.add_edge(H + w, h, grid[h][w]);
    }
  }

  auto ans = accumulate(R.begin(), R.end(), 0LL) + accumulate(C.begin(), C.end(), 0LL) - G.flow(s, t);
  cout << ans << endl;
}

int main() {
  bokusunny;
  solve();

  return 0;
}
0