結果

問題 No.957 植林
ユーザー 沙耶花沙耶花
提出日時 2023-06-03 14:53:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 921 bytes
コンパイル時間 4,873 ms
コンパイル使用メモリ 270,328 KB
実行使用メモリ 9,748 KB
最終ジャッジ日時 2024-06-09 03:35:36
合計ジャッジ時間 12,199 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 32 ms
8,944 KB
testcase_04 AC 30 ms
8,628 KB
testcase_05 AC 33 ms
8,960 KB
testcase_06 AC 36 ms
9,204 KB
testcase_07 AC 34 ms
8,920 KB
testcase_08 AC 29 ms
8,900 KB
testcase_09 AC 29 ms
9,032 KB
testcase_10 AC 30 ms
9,100 KB
testcase_11 AC 30 ms
8,976 KB
testcase_12 AC 28 ms
8,876 KB
testcase_13 AC 25 ms
7,632 KB
testcase_14 AC 31 ms
9,396 KB
testcase_15 AC 27 ms
9,032 KB
testcase_16 AC 26 ms
7,992 KB
testcase_17 AC 27 ms
8,660 KB
testcase_18 AC 254 ms
8,928 KB
testcase_19 AC 242 ms
9,044 KB
testcase_20 AC 249 ms
9,204 KB
testcase_21 AC 260 ms
9,216 KB
testcase_22 AC 279 ms
9,468 KB
testcase_23 AC 280 ms
9,464 KB
testcase_24 AC 295 ms
9,624 KB
testcase_25 AC 303 ms
9,740 KB
testcase_26 AC 305 ms
9,744 KB
testcase_27 AC 304 ms
9,620 KB
testcase_28 AC 304 ms
9,620 KB
testcase_29 AC 308 ms
9,620 KB
testcase_30 AC 308 ms
9,620 KB
testcase_31 AC 229 ms
9,048 KB
testcase_32 AC 238 ms
9,048 KB
testcase_33 AC 250 ms
9,196 KB
testcase_34 AC 259 ms
9,236 KB
testcase_35 AC 274 ms
9,340 KB
testcase_36 AC 282 ms
9,464 KB
testcase_37 AC 291 ms
9,620 KB
testcase_38 AC 305 ms
9,744 KB
testcase_39 AC 304 ms
9,748 KB
testcase_40 AC 302 ms
9,620 KB
testcase_41 AC 19 ms
9,616 KB
testcase_42 AC 19 ms
9,624 KB
testcase_43 AC 43 ms
9,624 KB
testcase_44 AC 42 ms
9,624 KB
testcase_45 AC 1 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001
#define Inf48 5000000000000

int main(){
	
	int h,w;
	cin>>h>>w;
	vector g(h,vector<long long>(w));
	long long ans = 0;
	rep(i,h){
		rep(j,w){
			cin>>g[i][j];
			ans += g[i][j];
		}
	}
	
	vector<long long> rc0(h+w,Inf48);
	auto rc1 = rc0;
	rep(i,h+w){
		long long t;
		cin>>t;
		rc1[i] -= t;
	}
	
	rep(i,h){
		rep(j,w){
			rc0[i] -= g[i][j];
		}
	}
	
	mf_graph<long long> G(h+w + 2);
	int s = (h+w);
	int t = s+1;
	rep(i,h+w){
		G.add_edge(s,i,rc0[i]);
		G.add_edge(i,t,rc1[i]);
	}
	rep(i,h){
		rep(j,w){
			G.add_edge(h+j,i,g[i][j]);
		}
	}
	//cout<<ans<<endl;
	ans += G.flow(s,t);
	//cout<<ans<<endl;
	ans -= Inf48 * (h+w);
	ans *= -1;
	cout<<ans<<endl;
	
	return 0;
}
0