結果

問題 No.957 植林
ユーザー 👑 kmjpkmjp
提出日時 2019-12-20 00:50:32
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 2,417 bytes
コンパイル時間 2,313 ms
コンパイル使用メモリ 177,196 KB
実行使用メモリ 15,784 KB
最終ジャッジ日時 2023-09-21 07:52:57
合計ジャッジ時間 12,298 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 53 ms
14,292 KB
testcase_04 AC 46 ms
13,956 KB
testcase_05 AC 51 ms
14,552 KB
testcase_06 AC 52 ms
14,856 KB
testcase_07 AC 56 ms
13,960 KB
testcase_08 AC 29 ms
14,472 KB
testcase_09 AC 28 ms
14,864 KB
testcase_10 AC 32 ms
14,444 KB
testcase_11 AC 30 ms
14,664 KB
testcase_12 AC 31 ms
14,380 KB
testcase_13 AC 23 ms
12,612 KB
testcase_14 AC 27 ms
14,952 KB
testcase_15 AC 26 ms
14,244 KB
testcase_16 AC 22 ms
12,480 KB
testcase_17 AC 24 ms
14,100 KB
testcase_18 AC 251 ms
14,472 KB
testcase_19 AC 266 ms
14,684 KB
testcase_20 AC 277 ms
14,584 KB
testcase_21 AC 287 ms
14,848 KB
testcase_22 AC 300 ms
15,172 KB
testcase_23 AC 314 ms
15,420 KB
testcase_24 AC 323 ms
15,532 KB
testcase_25 AC 335 ms
15,784 KB
testcase_26 AC 333 ms
15,504 KB
testcase_27 AC 337 ms
15,648 KB
testcase_28 AC 334 ms
15,372 KB
testcase_29 AC 338 ms
15,436 KB
testcase_30 AC 346 ms
15,668 KB
testcase_31 AC 250 ms
14,472 KB
testcase_32 AC 263 ms
14,632 KB
testcase_33 AC 272 ms
14,584 KB
testcase_34 AC 285 ms
14,848 KB
testcase_35 AC 299 ms
15,104 KB
testcase_36 AC 312 ms
15,424 KB
testcase_37 AC 324 ms
15,556 KB
testcase_38 AC 338 ms
15,780 KB
testcase_39 AC 335 ms
15,536 KB
testcase_40 AC 338 ms
15,576 KB
testcase_41 AC 19 ms
15,596 KB
testcase_42 AC 20 ms
15,468 KB
testcase_43 AC 26 ms
15,476 KB
testcase_44 AC 25 ms
15,500 KB
testcase_45 AC 2 ms
4,376 KB
testcase_46 AC 2 ms
4,380 KB
testcase_47 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#undef _P
#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
//-------------------------------------------------------


template<class V> class MaxFlow_dinic {
public:
	struct edge { int to,reve;V cap;};
	static const int MV = 5100;
	vector<edge> E[MV];
	int itr[MV],lev[MV];
	void add_edge(int x,int y,V cap,bool undir=false) {
		E[x].push_back((edge){y,(int)E[y].size(),cap});
		E[y].push_back((edge){x,(int)E[x].size()-1,undir?cap:0});
	}
	void bfs(int cur) {
		MINUS(lev);
		queue<int> q;
		lev[cur]=0;
		q.push(cur);
		while(q.size()) {
			int v=q.front(); q.pop();
			ITR(e,E[v]) if(e->cap>0 && lev[e->to]<0) lev[e->to]=lev[v]+1, q.push(e->to);
		}
	}
	V dfs(int from,int to,V cf) {
		if(from==to) return cf;
		for(;itr[from]<E[from].size();itr[from]++) {
			edge* e=&E[from][itr[from]];
			if(e->cap>0 && lev[from]<lev[e->to]) {
				V f=dfs(e->to,to,min(cf,e->cap));
				if(f>0) {
					e->cap-=f;
					E[e->to][e->reve].cap += f;
					return f;
				}
			}
		}
		return 0;
	}
	V maxflow(int from, int to) {
		V fl=0,tf;
		while(1) {
			bfs(from);
			if(lev[to]<0) return fl;
			ZERO(itr);
			while((tf=dfs(from,to,numeric_limits<V>::max()))>0) fl+=tf;
		}
	}
};


int H,W;
ll G[1010][1010];
ll R[1010],C[1010];

MaxFlow_dinic<ll> mf;

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>H>>W;
	FOR(y,H) FOR(x,W) {
		cin>>G[y][x];
	}
	ll sum=0;
	FOR(y,H) {
		cin>>R[y];
		R[y]*=2;
		ll prof=R[y];
		FOR(x,W) prof-=G[y][x];
		if(prof>0) {
			sum+=prof;
			mf.add_edge(0,1+y,prof);
		}
		else {
			mf.add_edge(1+y,1000,-prof);
		}
	}
	FOR(x,W) {
		cin>>C[x];
		C[x]*=2;
		ll prof=C[x];
		FOR(y,H) prof-=G[y][x];
		if(prof>0) {
			sum+=prof;
			mf.add_edge(0,500+x,prof);
		}
		else {
			mf.add_edge(500+x,1000,-prof);
		}
	}
	FOR(y,H) FOR(x,W) {
		mf.add_edge(1+y,500+x,G[y][x]);
		mf.add_edge(500+x,1+y,G[y][x]);
	}
	cout<<(sum-mf.maxflow(0,1000))/2<<endl;
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0