結果

問題 No.957 植林
ユーザー chocoruskchocorusk
提出日時 2019-12-19 22:24:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 760 ms / 2,000 ms
コード長 2,116 bytes
コンパイル時間 1,229 ms
コンパイル使用メモリ 118,848 KB
実行使用メモリ 15,724 KB
最終ジャッジ日時 2024-07-07 01:55:26
合計ジャッジ時間 19,770 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 57 ms
13,260 KB
testcase_04 AC 52 ms
12,268 KB
testcase_05 AC 61 ms
13,592 KB
testcase_06 AC 61 ms
13,244 KB
testcase_07 AC 57 ms
13,464 KB
testcase_08 AC 47 ms
13,220 KB
testcase_09 AC 47 ms
13,232 KB
testcase_10 AC 51 ms
13,476 KB
testcase_11 AC 47 ms
13,728 KB
testcase_12 AC 47 ms
12,836 KB
testcase_13 AC 40 ms
12,364 KB
testcase_14 AC 50 ms
13,596 KB
testcase_15 AC 46 ms
12,860 KB
testcase_16 AC 40 ms
12,416 KB
testcase_17 AC 42 ms
13,212 KB
testcase_18 AC 527 ms
12,828 KB
testcase_19 AC 570 ms
13,200 KB
testcase_20 AC 623 ms
14,604 KB
testcase_21 AC 607 ms
13,644 KB
testcase_22 AC 677 ms
13,696 KB
testcase_23 AC 704 ms
14,324 KB
testcase_24 AC 728 ms
14,476 KB
testcase_25 AC 754 ms
14,724 KB
testcase_26 AC 751 ms
14,852 KB
testcase_27 AC 752 ms
15,124 KB
testcase_28 AC 757 ms
14,724 KB
testcase_29 AC 750 ms
14,852 KB
testcase_30 AC 750 ms
14,852 KB
testcase_31 AC 530 ms
12,952 KB
testcase_32 AC 566 ms
13,072 KB
testcase_33 AC 619 ms
13,596 KB
testcase_34 AC 611 ms
14,044 KB
testcase_35 AC 675 ms
13,824 KB
testcase_36 AC 723 ms
14,820 KB
testcase_37 AC 722 ms
14,860 KB
testcase_38 AC 760 ms
14,856 KB
testcase_39 AC 749 ms
14,900 KB
testcase_40 AC 752 ms
14,724 KB
testcase_41 AC 31 ms
14,728 KB
testcase_42 AC 32 ms
14,848 KB
testcase_43 AC 56 ms
15,724 KB
testcase_44 AC 60 ms
14,724 KB
testcase_45 AC 2 ms
6,944 KB
testcase_46 AC 2 ms
6,940 KB
testcase_47 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
const ll INF=1e18;
struct edge {int to; long long int cap; int rev;} ;
 
vector<edge> G[1020];
int level[1020];
int iter[1020];
 
void add_edge(int from, int to, long long int cap){
	edge e;
	e.to=to, e.cap=cap, e.rev=G[to].size();
	G[from].push_back(e);
	e.to=from, e.cap=0, e.rev=G[from].size()-1;
	G[to].push_back(e);
}
 
void bfs(int s){
	memset(level, -1, sizeof(level));
	queue<int> que;
	level[s]=0;
	que.push(s);
	while(!que.empty()){
		int v=que.front();
		que.pop();
		for(int i=0; i<G[v].size(); i++){
			edge e=G[v][i];
			if(e.cap>0 && level[e.to]<0){
				level[e.to]=level[v]+1;
				que.push(e.to);
			}
		}
	}
}
 
long long int dfs(int v, int t, long long int f){
	if(v==t) return f;
	for(int &i=iter[v]; i<G[v].size(); i++){
		edge &e=G[v][i];
		if(e.cap>0 && level[v]<level[e.to]){
			long long int 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;
}
 
long long int max_flow(int s, int t){
	long long int flow=0;
	while(1){
		bfs(s);
		if(level[t]<0) return flow;
		memset(iter, 0, sizeof(iter));
		long long int f;
		while((f=dfs(s, t, INF))>0){
			flow+=f;
		}
	}
}
int main()
{
	int h, w;
  cin>>h>>w;
  int s=h+w, t=s+1;
  ll sum=0;
  for(int i=0; i<h; i++){
    for(int j=0; j<w; j++){
      ll x; cin>>x;
      add_edge(i, t, x);
      add_edge(j+h, i, x);
    }
  }
  for(int i=0; i<h; i++){
    ll x; cin>>x;
    sum+=x;
    add_edge(s, i, x);
  }
  for(int i=0; i<w; i++){
    ll x; cin>>x;
    sum+=x;
    add_edge(s, i+h, x);
  }
  cout<<sum-max_flow(s, t)<<endl;
	return 0;
}
0