結果
| 問題 |
No.957 植林
|
| コンテスト | |
| ユーザー |
ゆにぽけ
|
| 提出日時 | 2023-10-31 11:24:36 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 833 ms / 2,000 ms |
| コード長 | 3,127 bytes |
| コンパイル時間 | 1,378 ms |
| コンパイル使用メモリ | 137,560 KB |
| 最終ジャッジ日時 | 2025-02-17 17:08:53 |
|
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 45 |
ソースコード
#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();
}
ゆにぽけ