結果

問題 No.957 植林
ユーザー t98slidert98slider
提出日時 2023-11-13 23:41:23
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 332 ms / 2,000 ms
コード長 932 bytes
コンパイル時間 4,565 ms
コンパイル使用メモリ 269,316 KB
実行使用メモリ 9,400 KB
最終ジャッジ日時 2024-09-26 03:26:14
合計ジャッジ時間 13,116 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 21 ms
8,388 KB
testcase_04 AC 21 ms
8,256 KB
testcase_05 AC 22 ms
8,648 KB
testcase_06 AC 24 ms
8,900 KB
testcase_07 AC 22 ms
8,404 KB
testcase_08 AC 18 ms
8,480 KB
testcase_09 AC 17 ms
8,604 KB
testcase_10 AC 18 ms
8,796 KB
testcase_11 AC 17 ms
8,728 KB
testcase_12 AC 18 ms
8,468 KB
testcase_13 AC 15 ms
7,752 KB
testcase_14 AC 18 ms
9,020 KB
testcase_15 AC 17 ms
8,636 KB
testcase_16 AC 15 ms
7,632 KB
testcase_17 AC 16 ms
8,384 KB
testcase_18 AC 231 ms
8,748 KB
testcase_19 AC 244 ms
8,740 KB
testcase_20 AC 263 ms
8,880 KB
testcase_21 AC 266 ms
8,884 KB
testcase_22 AC 290 ms
9,008 KB
testcase_23 AC 306 ms
9,156 KB
testcase_24 AC 311 ms
9,140 KB
testcase_25 AC 328 ms
9,276 KB
testcase_26 AC 325 ms
9,280 KB
testcase_27 AC 330 ms
9,272 KB
testcase_28 AC 328 ms
9,276 KB
testcase_29 AC 329 ms
9,276 KB
testcase_30 AC 332 ms
9,256 KB
testcase_31 AC 231 ms
8,620 KB
testcase_32 AC 242 ms
8,744 KB
testcase_33 AC 262 ms
8,880 KB
testcase_34 AC 262 ms
8,888 KB
testcase_35 AC 291 ms
9,004 KB
testcase_36 AC 305 ms
8,936 KB
testcase_37 AC 311 ms
9,264 KB
testcase_38 AC 323 ms
9,280 KB
testcase_39 AC 323 ms
9,276 KB
testcase_40 AC 328 ms
9,152 KB
testcase_41 AC 14 ms
9,148 KB
testcase_42 AC 14 ms
9,144 KB
testcase_43 AC 21 ms
9,280 KB
testcase_44 AC 21 ms
9,400 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;

template<class T> istream& operator >> (istream& is, vector<T>& vec) {
    for(T& x : vec) is >> x;
    return is;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int h, w;
    cin >> h >> w;
    vector<vector<int>> G(h, vector<int>(w));
    vector<int> R(h), C(w);
    cin >> G >> R >> C;
    atcoder::mf_graph<ll> g(h + w + 2);
    int src = h + w, sink = src + 1;
    ll ans = 0;
    for(int y = 0; y < h; y++){
        ll s = accumulate(G[y].begin(), G[y].end(), 0ll);
        ll mn = min((ll)(R[y]), s);
        ans += R[y] - mn;
        g.add_edge(src, y, s - mn);
        for(int x = 0; x < w; x++){
            g.add_edge(y, x + h, G[y][x]);
        }
    }
    for(int x = 0; x < w; x++){
        g.add_edge(x + h, sink, C[x]);
        ans += C[x];
    }
    ans -= g.flow(src, sink);
    cout << ans << '\n';
}
0