結果

問題 No.2328 Build Walls
ユーザー m_99m_99
提出日時 2023-05-28 14:07:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 973 bytes
コンパイル時間 4,232 ms
コンパイル使用メモリ 268,540 KB
実行使用メモリ 146,444 KB
最終ジャッジ日時 2024-06-08 04:46:03
合計ジャッジ時間 9,177 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

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


int main(){
	
	int H,W;
	cin>>H>>W;
	vector a(H,vector<int>(W,-1));
	rep(i,H){
		if(i==0||i==H-1)continue;
		rep(j,W){
			cin>>a[i][j];
		}
	}
	
	mf_graph<long long> G(H*W*2+2);
	int S = H*W*2;
	int T=  H*W*2+1;
	rep(i,H){
		rep(j,W){
			if(a[i][j]!=-1)G.add_edge(i*W+j,i*W+j+H*W,a[i][j]);
			else G.add_edge(i*W+j,i*W+j+H*W,Inf32);
		}
	}
	vector<int> dx = {1,-1,0,0},dy = {0,0,1,-1};
	rep(i,H){
		rep(j,W){
			rep(k,4){
				int ii = i+dx[k],jj = j+dy[k];
				if(ii<0||ii>=H||jj<0||jj>=W)continue;
				G.add_edge(i*W+j+H*W,ii*W+jj,Inf32);
			}
		}
	}
	rep(i,W){
		G.add_edge(S,0*W+i,Inf32);
		G.add_edge((H-1)*W+i+H*W,T,Inf32);
	}
	
	long long ans = G.flow(S,T);
	if(ans>=Inf32)ans = -1;
	cout<<ans<<endl;
	
	return 0;
}
0