結果
問題 | No.957 植林 |
ユーザー | comi_like |
提出日時 | 2021-05-16 18:20:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,023 bytes |
コンパイル時間 | 4,287 ms |
コンパイル使用メモリ | 241,312 KB |
実行使用メモリ | 27,428 KB |
最終ジャッジ日時 | 2024-10-05 02:26:00 |
合計ジャッジ時間 | 9,617 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 4 ms
13,636 KB |
testcase_01 | AC | 4 ms
6,816 KB |
testcase_02 | AC | 4 ms
6,820 KB |
testcase_03 | AC | 95 ms
20,504 KB |
testcase_04 | AC | 81 ms
19,580 KB |
testcase_05 | AC | 91 ms
20,908 KB |
testcase_06 | AC | 109 ms
21,664 KB |
testcase_07 | AC | 99 ms
19,992 KB |
testcase_08 | AC | 71 ms
20,852 KB |
testcase_09 | AC | 68 ms
20,720 KB |
testcase_10 | AC | 78 ms
21,312 KB |
testcase_11 | AC | 74 ms
20,720 KB |
testcase_12 | AC | 72 ms
20,704 KB |
testcase_13 | AC | 57 ms
18,296 KB |
testcase_14 | AC | 72 ms
22,052 KB |
testcase_15 | AC | 67 ms
20,616 KB |
testcase_16 | AC | 60 ms
18,412 KB |
testcase_17 | AC | 63 ms
19,840 KB |
testcase_18 | TLE | - |
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 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
ソースコード
#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(90000+h+w+10); v2d(gg,h,w,0); v1 rr(h); v1 cc(w); ll s=90000+h+w+5; ll t=90000+h+w+4; rep(i,h)rep(k,w){ cin>>gg[i][k]; } rep(i,h)cin>>rr[i]; rep(i,w)cin>>cc[i]; rep(i,h){ rep(k,w){ ll a=gg[i][k]; graph.add_edge(s,300*i+k,a); graph.add_edge(300*i+k,90000+i,INF); graph.add_edge(300*i+k,90000+h+k,INF); } } ll sum=0; rep(i,h){ ll a=rr[i]; sum+=a; graph.add_edge(90000+i,t,a); } rep(k,w){ ll a=cc[k]; sum+=a; graph.add_edge(90000+h+k,t,a); } eout(sum-graph.flow(s,t)); }