#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include //#include //#include //#include //#include //#include //#include //#include //#include //#include //#if __cplusplus >= 201103L //#include //#include //#include //#include // //#define cauto const auto& //#else //#endif using namespace std; typedef long long ll; typedef pair pii; typedef pair pll; typedef vector vint; typedef vector > vvint; typedef vector vll, vLL; typedef vector > vvll, vvLL; #define VV(T) vector > template void initvv(vector > &v, int a, int b, const T &t = T()){ v.assign(a, vector(b, t)); } template void convert(const F &f, T &t){ stringstream ss; ss << f; ss >> t; } #undef _P #define _P(...) (void)printf(__VA_ARGS__) #define reep(i,a,b) for(int i=(a);i<(b);++i) #define rep(i,n) reep((i),0,(n)) #define ALL(v) (v).begin(),(v).end() #define PB push_back #define F first #define S second #define mkp make_pair #define RALL(v) (v).rbegin(),(v).rend() #define DEBUG #ifdef DEBUG #define dump(x) cout << #x << " = " << (x) << endl; #define debug(x) cout << #x << " = " << (x) << " (L" << __LINE__ << ")" << " " << __FILE__ << endl; #else #define dump(x) #define debug(x) #endif #define MOD 1000000007LL #define EPS 1e-8 #define INF 0x3f3f3f3f #define INFL 0x3f3f3f3f3f3f3f3fLL #define maxs(x,y) x=max(x,y) #define mins(x,y) x=min(x,y) void mainmain(){ int n,m; cin>>n>>m; vector vv(m); rep(i,m){ vvint tmp; initvv(tmp,n,n); rep(j,n) rep(k,n) cin>>tmp[j][k]; rep(j,n){ vint t(n); rep(k,n){ t[k] = tmp[j][k]; } vv[i].PB(t); } rep(j,n){ vint t(n); rep(k,n){ t[k] = tmp[k][j]; } vv[i].PB(t); } vint t(n); rep(j,n){ t[j] = tmp[j][j]; } vv[i].PB(t); rep(j,n){ t[j] = tmp[n-1-j][j]; } vv[i].PB(t); } int ans = INF; rep(i,m){ for(auto &x:vv[i]){ sort(ALL(x)); } } rep(i,m){ rep(j,i){ for(auto x:vv[i]){ for(auto y:vv[j]){ int cnt = 0; int xx = 0; int yy = 0; while(xx