#include "bits/stdc++.h" using namespace std; #define FOR(i,j,k) for(int (i)=(j);(i)<(int)(k);++(i)) #define rep(i,j) FOR(i,0,j) #define each(x,y) for(auto &(x):(y)) #define mp make_pair #define all(x) (x).begin(),(x).end() #define debug(x) cout<<#x<<": "<<(x)< pii; typedef vector vi; typedef vector vll; template> class SparseTableRMQ{ public: SparseTableRMQ(){ } SparseTableRMQ(int *ar, int n): n(n), data(n){ for(int i = 0; i < n;++i) data[i] = ar[i]; table = buildRMQ(); } int queryPos(int l, int r){ int k = lgInt(r - l - 1); int lid = table[l + n*k], rid = table[r + n*k - (1 << k)]; return (cmp(data[lid], data[rid])) ? lid : rid; } int queryValue(int l, int r){ return data[queryPos(l, r)]; } private: int n; vector data, table; Cmp cmp; int lgInt(int v){ static const unsigned b[] = {0x2, 0xC, 0xF0, 0xFF00, 0xFFFF0000}; static const unsigned S[] = {1, 2, 4, 8, 16}; int res = 0; for (int i = 4; i >= 0; i--) { if (v & b[i]) { v >>= S[i]; res |= S[i]; } } return res; } vector buildRMQ() { int logn = 1; for (int k = 1; k < n; k *= 2) ++logn; vector b(n*logn); for(int i = 0; i < n; ++i)b[i] = i; int cur = 0; for(int k = 1; k < n; k *= 2){ copy(b.begin() + cur, b.begin() + cur + n, b.begin() + cur + n); cur += n; for(int i = 0; i < n - k; ++i){ int idl = b[cur + i], idr = b[cur + i + k]; if(cmp(data[idl], data[idr])){ b[cur + i] = idl; } else{ b[cur + i] = idr; } } } return b; } }; typedef SparseTableRMQ> RMinQ; typedef SparseTableRMQ> RMaxQ; RMinQ rmq; RMaxQ rMq; int N, M, E[800]; int pt(int a, int b, int c){ a = E[a]; b = E[b]; c = E[c]; if(ac)return b; if(a > b && b < c)return max(a, c); return 0; } int calc(int x, int y){ assert(x < y); // x , z , y // x < z > y int z, res = 0; if(x + 1 < y){ z = rMq.queryPos(x + 1, y); smax(res, pt(x, z, y)); // x> z < y z = rmq.queryPos(x + 1, y); smax(res, pt(x, z, y)); } // z, x, y // z < x > y if(x > 0){ z = rmq.queryPos(0, x); smax(res, pt(z, x, y)); // z > x < y z = rMq.queryPos(0, x); smax(res, pt(z, x, y)); } // x, y, z // x < y > z if(y < N - 1){ z = rmq.queryPos(y + 1, N); smax(res, pt(x, y, z)); // x > y < z z = rMq.queryPos(y + 1, N); smax(res, pt(x, y, z)); } return res; } int main(){ ios::sync_with_stdio(0); cin.tie(0); cin >> N >> M; vector> vp; rep(i, M){ rep(j, N)cin >> E[j]; rmq = RMinQ(E, N); rMq = RMaxQ(E, N); ll tot = 0; rep(x, N)FOR(y, x + 1, N){ tot += calc(x, y); } vp.emplace_back(-tot, i); } sort(all(vp)); cout << vp[0].second << endl; }