#include #pragma GCC optimize("Ofast") //#pragma GCC target("avx2") #pragma GCC optimize("unroll-loops") using namespace std; //#include //#include //namespace mp=boost::multiprecision; //#define mulint mp::cpp_int //#define mulfloat mp::cpp_dec_float_100 struct __INIT{__INIT(){cin.tie(0);ios::sync_with_stdio(false);cout<=0;(i)--) #define flc(x) __builtin_popcountll(x) #define pint pair #define pdouble pair #define plint pair #define fi first #define se second #define all(x) x.begin(),x.end() //#define vec vector #define nep(x) next_permutation(all(x)) typedef long long lint; int dx[8]={1,1,0,-1,-1,-1,0,1}; int dy[8]={0,1,1,1,0,-1,-1,-1}; const int MAX_N=3e5+5; templatebool chmax(T &a,const T &b){if(abool chmin(T &a,const T &b){if(b bucket[MAX_N/1000]; //constexpr int MOD=1000000007; constexpr int MOD=998244353; //typedef __int128_t llint; #include using namespace atcoder; int main(void){ int H,W; cin >> H >> W; lint A[H][W]; rep(i,H) rep(j,W) cin >> A[i][j]; lint naive_ans=0; rep(i,(1<<(H*W))){ int M[H][W]={}; lint maxi=0; rep(j,H) rep(k,W){ if(i&(1<<(j*W+k))) M[j][k]=1,chmax(maxi,A[j][k]); } bool ok=true; rep(j,H-1) rep(k,W-1){ int sum=M[j][k]+M[j+1][k]+M[j][k+1]+M[j+1][k+1]; if(sum%2) ok=false; } if(ok) naive_ans+=maxi; } cout << naive_ans << endl; /*lint ans=0; rep(i,(1<> masu; rep(i,H) rep(j,W) masu.push_back({A[i][j],{i,j}}); sort(all(masu)); reverse(all(masu)); for(auto e:masu){ lint nx=e.se.fi,ny=e.se.se; lint num=e.fi; if(uf.same(nx,H+ny)) continue; uf.merge(nx,H+ny); ufcomp--; mint add=num; add*=pow_mod(2,ufcomp-1,MOD); uf.merge(nx,H+ny); fast_ans+=add; } cout << fast_ans.val() << endl;*/ }