結果
問題 | No.957 植林 |
ユーザー | milanis48663220 |
提出日時 | 2021-06-02 01:05:48 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,282 bytes |
コンパイル時間 | 1,579 ms |
コンパイル使用メモリ | 137,200 KB |
実行使用メモリ | 25,264 KB |
最終ジャッジ日時 | 2024-11-09 00:25:31 |
合計ジャッジ時間 | 6,465 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 79 ms
19,752 KB |
testcase_04 | AC | 71 ms
18,824 KB |
testcase_05 | AC | 81 ms
20,612 KB |
testcase_06 | AC | 83 ms
21,476 KB |
testcase_07 | AC | 78 ms
19,452 KB |
testcase_08 | AC | 52 ms
20,244 KB |
testcase_09 | AC | 49 ms
20,272 KB |
testcase_10 | AC | 61 ms
20,964 KB |
testcase_11 | AC | 57 ms
20,280 KB |
testcase_12 | AC | 55 ms
20,240 KB |
testcase_13 | AC | 44 ms
17,544 KB |
testcase_14 | AC | 54 ms
21,804 KB |
testcase_15 | AC | 50 ms
20,008 KB |
testcase_16 | AC | 44 ms
17,780 KB |
testcase_17 | AC | 46 ms
19,004 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
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 | -- | - |
ソースコード
#include <iostream> #include <algorithm> #include <iomanip> #include <vector> #include <queue> #include <set> #include <map> #include <tuple> #include <cmath> #include <numeric> #include <functional> #include <cassert> #include <atcoder/maxflow> #define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl; #define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl; template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } using namespace std; typedef long long ll; const ll INF = 1e15; struct edge {ll to, cap, rev;}; class FordFolkerson{ public: FordFolkerson(ll n){ N = n; G = vector<vector<edge>>(n, vector<edge>()); used = vector<bool>(n, false); } void add_edge(ll from, ll to, ll cap){ G[from].push_back((edge{to, cap, (ll)G[to].size()})); G[to].push_back((edge{from, 0, (ll)G[from].size()-1})); } ll max_flow(ll s, ll t){ ll flow = 0; while(true){ clear_used(); ll f = dfs(s, t, INF); if(f == 0){ break; } flow += f; } return flow; } private: vector<vector<edge>> G; vector<bool> used; ll N; void clear_used(){ for(ll i = 0; i < N; i++) used[i] = false; } ll dfs(ll v, ll t, ll f){ if(v == t) return f; used[v] = true; for(ll i = 0; i < G[v].size(); i++){ edge &e = G[v][i]; if(!used[e.to] && e.cap > 0){ ll d = dfs(e.to, t, min(f, e.cap)); if(d > 0){ e.cap -= d; G[e.to][e.rev].cap += d; return d; } } } return 0; } }; int main(){ ios::sync_with_stdio(false); cin.tie(0); cout << setprecision(10) << fixed; int h, w; cin >> h >> w; vector<vector<ll>> g(h, vector<ll>(w)); for(int i = 0; i < h; i++){ for(int j = 0; j < w; j++){ cin >> g[i][j]; } } vector<int> r(h), c(w); for(int i = 0; i < h; i++) cin >> r[i]; for(int i = 0; i < w; i++) cin >> c[i]; // FordFolkerson mf(2+h+w+h*w); atcoder::mf_graph<ll> mf(2+h+w+h*w); int s = 0, t = 1+h+w+h*w; auto row_index = [&](int i){ return i+1; }; auto col_index = [&](int j){ return h+j; }; auto cell_index = [&](int i, int j){ return h+w+w*i+j; }; for(int i = 0; i < h; i++) mf.add_edge(s, row_index(i), r[i]); for(int j = 0; j < w; j++) mf.add_edge(s, col_index(j), c[j]); for(int i = 0; i < h; i++){ for(int j = 0; j < w; j++){ mf.add_edge(row_index(i), cell_index(i, j), INF); mf.add_edge(col_index(j), cell_index(i, j), INF); mf.add_edge(cell_index(i, j), t, g[i][j]); } } cout << accumulate(r.begin(), r.end(), 0ll)+accumulate(c.begin(), c.end(), 0ll)-mf.flow(s, t) << endl; }