#include using namespace std; typedef signed long long ll; #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define FOR(x,to) for(x=0;x<(to);x++) #define FORR(x,arr) for(auto& x:arr) #define ITR(x,c) for(__typeof(c.begin()) x=c.begin();x!=c.end();x++) #define ALL(a) (a.begin()),(a.end()) #define ZERO(a) memset(a,0,sizeof(a)) #define MINUS(a) memset(a,0xff,sizeof(a)) //------------------------------------------------------- template class MaxFlow_dinic { public: struct edge { int to,reve;V cap;}; static const int MV = 5100; vector E[MV]; int itr[MV],lev[MV]; void add_edge(int x,int y,V cap,bool undir=false) { E[x].push_back((edge){y,(int)E[y].size(),cap}); E[y].push_back((edge){x,(int)E[x].size()-1,undir?cap:0}); } void bfs(int cur) { MINUS(lev); queue q; lev[cur]=0; q.push(cur); while(q.size()) { int v=q.front(); q.pop(); ITR(e,E[v]) if(e->cap>0 && lev[e->to]<0) lev[e->to]=lev[v]+1, q.push(e->to); } } V dfs(int from,int to,V cf) { if(from==to) return cf; for(;itr[from]cap>0 && lev[from]to]) { V f=dfs(e->to,to,min(cf,e->cap)); if(f>0) { e->cap-=f; E[e->to][e->reve].cap += f; return f; } } } return 0; } V maxflow(int from, int to) { V fl=0,tf; while(1) { bfs(from); if(lev[to]<0) return fl; ZERO(itr); while((tf=dfs(from,to,numeric_limits::max()))>0) fl+=tf; } } }; int H,W; ll G[1010][1010]; ll R[1010],C[1010]; MaxFlow_dinic mf; void solve() { int i,j,k,l,r,x,y; string s; cin>>H>>W; FOR(y,H) FOR(x,W) { cin>>G[y][x]; } ll sum=0; FOR(y,H) { cin>>R[y]; R[y]*=2; ll prof=R[y]; FOR(x,W) prof-=G[y][x]; if(prof>0) { sum+=prof; mf.add_edge(0,1+y,prof); } else { mf.add_edge(1+y,1000,-prof); } } FOR(x,W) { cin>>C[x]; C[x]*=2; ll prof=C[x]; FOR(y,H) prof-=G[y][x]; if(prof>0) { sum+=prof; mf.add_edge(0,500+x,prof); } else { mf.add_edge(500+x,1000,-prof); } } FOR(y,H) FOR(x,W) { mf.add_edge(1+y,500+x,G[y][x]); mf.add_edge(500+x,1+y,G[y][x]); } cout<<(sum-mf.maxflow(0,1000))/2<