結果
問題 | No.957 植林 |
ユーザー | shin3110 |
提出日時 | 2023-11-12 18:17:04 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,955 bytes |
コンパイル時間 | 1,905 ms |
コンパイル使用メモリ | 182,636 KB |
実行使用メモリ | 13,184 KB |
最終ジャッジ日時 | 2024-09-26 03:02:39 |
合計ジャッジ時間 | 5,544 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
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 <bits/stdc++.h> using namespace std; #define ll long long struct edge { int to, seq; ll cup; }; class max_flow { public: int siz; vector<vector<edge>> side; vector<bool> used; max_flow (int n) { siz = n; side.assign(siz, {}); used.assign(siz, false); return ; } void set(int pos, int to, ll x) { int a = side[to].size(); int b = side[pos].size(); side[pos].push_back(edge{to, a, x}); side[to].push_back(edge{pos, b, 0}); return ; } ll dfs(int pos, int goal, ll F) { if(pos == goal) return F; used[pos] = true; for(int i=0; i<side[pos].size(); i++) { if(side[pos][i].cup == 0) continue; if(used[side[pos][i].to]) continue; ll G = dfs(side[pos][i].to, goal, min(F, side[pos][i].cup)); if(G > 0) { side[pos][i].cup -= G; side[side[pos][i].to][side[pos][i].seq].cup += G; return G; } } return 0; } ll len(int s, int t) { ll res = 0; while(1) { for(int i=0; i<siz; i++) used[i] = false; ll F = dfs(s, t, 1e18); if(F == 0) break; res += F; } return res; } }; signed main() { int h, w; cin >> h >> w; int ax = h+w+1; max_flow F(ax+1); vector<ll> c(h+1, 0); for(int i=0; i<h*w; i++) { ll g; cin >> g; int x = i/w; c[x+1] += g; int y = i%w; F.set(x+1, h+y+1, g); } ll ans = 0; for(int j=1; j<=h; j++) { ll r; cin >> r; r -= c[j]; if(r < 0) F.set(0, j, -r); else { ans += r; F.set(j, ax, r); } } for(int i=1; i<=w; i++) { ll r; cin >> r; F.set(h+i, ax, r); ans += r; } ans -= F.len(0, ax); cout << ans << endl; }