結果
問題 | No.957 植林 |
ユーザー | ゆにぽけ |
提出日時 | 2023-10-31 11:37:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 559 ms / 2,000 ms |
コード長 | 3,128 bytes |
コンパイル時間 | 1,623 ms |
コンパイル使用メモリ | 140,980 KB |
実行使用メモリ | 10,368 KB |
最終ジャッジ日時 | 2024-09-25 17:34:34 |
合計ジャッジ時間 | 15,039 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 26 ms
9,088 KB |
testcase_04 | AC | 21 ms
9,088 KB |
testcase_05 | AC | 26 ms
9,088 KB |
testcase_06 | AC | 25 ms
9,984 KB |
testcase_07 | AC | 26 ms
8,960 KB |
testcase_08 | AC | 18 ms
9,472 KB |
testcase_09 | AC | 17 ms
9,600 KB |
testcase_10 | AC | 19 ms
9,728 KB |
testcase_11 | AC | 17 ms
9,600 KB |
testcase_12 | AC | 17 ms
9,216 KB |
testcase_13 | AC | 14 ms
7,680 KB |
testcase_14 | AC | 18 ms
9,856 KB |
testcase_15 | AC | 18 ms
9,344 KB |
testcase_16 | AC | 14 ms
7,680 KB |
testcase_17 | AC | 16 ms
8,960 KB |
testcase_18 | AC | 378 ms
9,216 KB |
testcase_19 | AC | 413 ms
9,472 KB |
testcase_20 | AC | 430 ms
9,472 KB |
testcase_21 | AC | 444 ms
9,728 KB |
testcase_22 | AC | 461 ms
9,728 KB |
testcase_23 | AC | 502 ms
9,728 KB |
testcase_24 | AC | 528 ms
9,984 KB |
testcase_25 | AC | 547 ms
10,112 KB |
testcase_26 | AC | 549 ms
10,240 KB |
testcase_27 | AC | 559 ms
10,240 KB |
testcase_28 | AC | 533 ms
10,240 KB |
testcase_29 | AC | 537 ms
10,112 KB |
testcase_30 | AC | 542 ms
10,240 KB |
testcase_31 | AC | 374 ms
9,088 KB |
testcase_32 | AC | 410 ms
9,344 KB |
testcase_33 | AC | 445 ms
9,600 KB |
testcase_34 | AC | 427 ms
9,856 KB |
testcase_35 | AC | 463 ms
9,728 KB |
testcase_36 | AC | 525 ms
9,856 KB |
testcase_37 | AC | 545 ms
9,984 KB |
testcase_38 | AC | 537 ms
10,240 KB |
testcase_39 | AC | 539 ms
10,368 KB |
testcase_40 | AC | 548 ms
10,240 KB |
testcase_41 | AC | 13 ms
10,240 KB |
testcase_42 | AC | 14 ms
10,240 KB |
testcase_43 | AC | 18 ms
10,240 KB |
testcase_44 | AC | 20 ms
10,240 KB |
testcase_45 | AC | 1 ms
6,944 KB |
testcase_46 | AC | 1 ms
6,940 KB |
testcase_47 | AC | 2 ms
6,940 KB |
ソースコード
#include<iostream> #include<vector> #include<algorithm> #include<cstring> #include<cassert> #include<cmath> #include<ctime> #include<iomanip> #include<numeric> #include<stack> #include<queue> #include<map> #include<unordered_map> #include<set> #include<unordered_set> #include<bitset> #include<random> #include<functional> #include<utility> using namespace std; struct Graph { struct edge { int rev,from,to; long cap; edge(int r,int f,int t,long c) : rev(r),from(f),to(t),cap(c) {} }; vector<vector<edge>> list; Graph(int n = 0) : list(n) {} size_t size() {return list.size();} vector<edge> &operator[](int i) {return list[i];} edge &redge(const edge &e) {return list[e.to][e.rev];} void run_flow(edge &e,long f) { assert(f <= e.cap); e.cap -= f; redge(e).cap += f; } void add_edge(int from,int to,long cap) { int fromrev = (int)list[from].size(); int torev = (int)list[to].size(); list[from].push_back(edge(torev,from,to,cap)); list[to].push_back(edge(fromrev,to,from,0)); } }; template<class T>struct Dinic { T INF; vector<int> level,iter; Dinic(T INF) : INF(INF) {} void bfs(Graph &G,int s) { level.assign((int)G.size(),-1); level[s] = 0; queue<int> Q; Q.push(s); while(!Q.empty()) { int u = Q.front(); Q.pop(); for(int i = 0;i < (int)G[u].size();i++) { auto &e = G[u][i]; if(e.cap && level[e.to] < 0) { level[e.to] = level[u] + 1; Q.push(e.to); } } } } T dfs(Graph &G,int u,int target,T f) { if(u == target) return f; for(int &i = iter[u];i < (int)G[u].size();i++) { auto &e = G[u][i]; if(!e.cap) continue; if(level[u] >= level[e.to]) continue; T flow = dfs(G,e.to,target,min(f,T(e.cap))); if(!flow) continue; G.run_flow(e,flow); return flow; } return 0; } T maxflow(Graph &G,int s,int t) { T flow = 0; while(true) { bfs(G,s); if(level[t] < 0) return flow; iter.assign((int)G.size(),0); while(true) { T f = dfs(G,s,t,INF); if(!f) break; flow += f; } } } vector<bool> mincut(Graph G,int s) { vector<bool> res((int)G.size()); queue<int> Q; Q.push(s); while(!Q.empty()) { int u = Q.front(); Q.pop(); res[u] = true; for(auto e:G[u]) if(e.cap && !res[e.to]) res[e.to] = true,Q.push(e.to); } return res; } }; int H,W; long long cost[300]; void solve() { cin >> H >> W; Graph G(H+W+2); int S = H+W,T = S+1; for(int i = 0;i < H;i++)for(int j = 0;j < W;j++) { int g; cin >> g; cost[i] += g; G.add_edge(H+j,i,g); } long long ans = 0; for(int i = 0;i < H;i++) { int R; cin >> R; ans += R; G.add_edge(S,i,R); G.add_edge(i,T,cost[i]); } for(int j = 0;j < W;j++) { int C; cin >> C; ans += C; G.add_edge(S,H+j,C); } Dinic<long long> dc((long long)1e18); long long mf = dc.maxflow(G,S,T); ans -= mf; cout << ans << endl; } int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int tt = 1; /* cin >> tt; */ while(tt--) solve(); }