結果

問題 No.957 植林
ユーザー comi_likecomi_like
提出日時 2021-05-16 22:16:30
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 298 ms / 2,000 ms
コード長 2,983 bytes
コンパイル時間 4,351 ms
コンパイル使用メモリ 242,444 KB
実行使用メモリ 9,868 KB
最終ジャッジ日時 2024-10-05 09:20:11
合計ジャッジ時間 12,460 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 32 ms
9,044 KB
testcase_04 AC 31 ms
8,628 KB
testcase_05 AC 33 ms
9,064 KB
testcase_06 AC 37 ms
9,196 KB
testcase_07 AC 33 ms
8,920 KB
testcase_08 AC 29 ms
9,016 KB
testcase_09 AC 29 ms
9,012 KB
testcase_10 AC 30 ms
9,084 KB
testcase_11 AC 29 ms
9,148 KB
testcase_12 AC 28 ms
8,876 KB
testcase_13 AC 25 ms
7,984 KB
testcase_14 AC 31 ms
9,328 KB
testcase_15 AC 29 ms
9,032 KB
testcase_16 AC 26 ms
7,988 KB
testcase_17 AC 28 ms
8,772 KB
testcase_18 AC 218 ms
8,896 KB
testcase_19 AC 228 ms
9,032 KB
testcase_20 AC 245 ms
9,172 KB
testcase_21 AC 246 ms
9,300 KB
testcase_22 AC 259 ms
9,312 KB
testcase_23 AC 278 ms
9,588 KB
testcase_24 AC 291 ms
9,596 KB
testcase_25 AC 297 ms
9,744 KB
testcase_26 AC 297 ms
9,704 KB
testcase_27 AC 298 ms
9,744 KB
testcase_28 AC 297 ms
9,748 KB
testcase_29 AC 296 ms
9,868 KB
testcase_30 AC 294 ms
9,868 KB
testcase_31 AC 216 ms
9,024 KB
testcase_32 AC 230 ms
9,160 KB
testcase_33 AC 246 ms
9,304 KB
testcase_34 AC 246 ms
9,424 KB
testcase_35 AC 255 ms
9,312 KB
testcase_36 AC 273 ms
9,456 KB
testcase_37 AC 289 ms
9,600 KB
testcase_38 AC 291 ms
9,740 KB
testcase_39 AC 292 ms
9,868 KB
testcase_40 AC 295 ms
9,744 KB
testcase_41 AC 20 ms
9,616 KB
testcase_42 AC 20 ms
9,616 KB
testcase_43 AC 43 ms
9,616 KB
testcase_44 AC 43 ms
9,620 KB
testcase_45 AC 2 ms
6,820 KB
testcase_46 AC 1 ms
6,820 KB
testcase_47 AC 2 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
typedef long long ll;
const long long INF = 1LL<<60;
const double PI = acos(-1.0);
/*const double PI = atan2(0.0,-1.0)*/
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }
#define rep(i, n) for(ll i = 0; i < (ll)(n); i++)
#define rep1(i,aa,n) for(ll i = aa; i <= (ll)(n); i++)
#define ALL(a)  (a).begin(),(a).end()
#define ar_init(aa,val) rep(i,aa.size()) aa[i]=val;
#define v2d(aa,val1,val2,ini) vector<vector<ll>> aa(val1,vector<ll>(val2,ini));
#define pqe priority_queue<ll>
#define pqeg priority_queue<ll,vector<ll>,greater<ll>>
#define lcin(...) ll __VA_ARGS__;CINT(__VA_ARGS__)
#define eout(...) COU(__VA_ARGS__);
#define sout(...) SCOU(__VA_ARGS__);
#define scin(...) string __VA_ARGS__;CINT(__VA_ARGS__)
#define lb(aa,val) lower_bound(ALL(aa),val)
#define pb push_back
#define mkp make_pair
ll kaijou(ll e){ll r=1;rep(i,e){r*=(i+1);}return r;}

void CINT(){}
template <class Head,class... Tail>
void CINT(Head&& head,Tail&&... tail){
    cin>>head;
    CINT(move(tail)...);
}

void COU(){}
template <class Head,class... Tail>
void COU(Head&& head,Tail&&... tail){
    cout<<head<<endl;
    COU(move(tail)...);
}

void SCOU(){}
template <class Head,class... Tail>
void SCOU(Head&& head,Tail&&... tail){
    cout<<head<<" ";
    SCOU(move(tail)...);
}

template <class T = ll>
T IN(){T x;cin>>x;return (x);}

using pii = pair<ll,ll>;
using v2 = vector<vector<ll>>;
using v1 = vector<ll>;
using v2p = vector<vector<pii>>;
using v1p = vector<pii>;
const ll mo=1000000007;
//const ll mo=998244353;

v2 mat_pow(v2 en,ll n){
ll si=en.size();
//n==0のときreturn単位行列
if(n==0){
rep(i,en.size()) rep(k,en.size()){
if(i==k){
en[i][k]=1;
}else{
en[i][k]=0;
}
}
return en; 
}

auto dfs = [&](auto self,ll ko) -> v2 {
if(ko==1){
return en;
}

auto e=self(self,ko/2);
v2d(res,si,si,0);
rep(i,res.size()){
rep(k,res.size()){
rep(m,res.size()){
res[i][k]+=e[i][m]*e[m][k]%mo;
res[i][k]%=mo;
}
}
}
v2d(rr,si,si,0);
if(ko%2){
rep(i,res.size()){
rep(k,res.size()){
rep(m,res.size()){
rr[i][k]+=res[i][m]*en[m][k]%mo;
rr[i][k]%=mo;
}
}
}
return rr;
}
return res;
};

return dfs(dfs,n);
}


ll mod_pow(ll N,ll n){
if(n==0) return 1;
ll hh;
hh=n%2;
int tt=mod_pow(N,n/2);
if(hh==0)return tt%mo*tt%mo;
else {return tt%mo*tt%mo*N%mo;}
}


int main(){

//cout<<fixed<<setprecision(15);

lcin(h,w);
mf_graph<ll> graph(h+w+100);
v2d(gg,h,w,0); 
v1 rr(h);
v1 cc(w);
ll s=h+w+50;
ll t=h+w+50+1;
v1 sum(h,0);
ll sum11=0;

rep(i,h)rep(k,w){
cin>>gg[i][k];
sum[i]+=gg[i][k];
graph.add_edge(i,h+k,gg[i][k]);
}

rep(i,h){
cin>>rr[i];
sum11+=rr[i];
}
rep(i,w){
cin>>cc[i];
sum11+=cc[i];
}

rep(i,h){
graph.add_edge(s,i,sum[i]);
graph.add_edge(i,t,rr[i]);
}

rep(i,w){
graph.add_edge(s,h+i,0);
graph.add_edge(h+i,t,cc[i]);
}

eout(sum11-graph.flow(s,t));




}
0