#include template struct CumulativeSum2D{ int h, w; std::vector> dat; CumulativeSum2D(int H, int W) : h(H), w(W), dat(H + 1, std::vector(W + 1, 0)) {} CumulativeSum2D(std::vector> &A) : h(A.size()), w(A[0].size()), dat(h + 1, std::vector(w + 1, 0)) { for(int y = 1; y <= h; y++){ for(int x = 1; x <= w; x++){ dat[y][x] = A[y - 1][x - 1] + dat[y][x - 1] + dat[y - 1][x] - dat[y - 1][x - 1]; } } } void add(int y, int x, T z){ assert(0 <= y && y < h); assert(0 <= x && x < w); dat[y + 1][x + 1] += z; } void build(){ for(int y = 1; y <= h; y++) { for(int x = 1; x <= w; x++) { dat[y][x] += dat[y][x - 1] + dat[y - 1][x] - dat[y - 1][x - 1]; } } } T query(int ly, int lx, int ry, int rx){ assert(0 <= ly && ly <= ry && ry <= h); assert(0 <= lx && lx <= rx && rx <= h); return dat[ry][rx] - dat[ly][rx] - dat[ry][lx] + dat[ly][lx]; } }; template struct imos2D{ int h, w; std::vector> dat; imos2D(int H, int W) : h(H), w(W), dat(H + 1, std::vector(W + 1, 0)) {} void add(int ly, int lx, int ry, int rx, T v){ assert(0 <= ly && ly <= ry && ry <= h); assert(0 <= lx && lx <= rx && rx <= w); dat[ry][rx] += v; dat[ly][rx] -= v; dat[ry][lx] -= v; dat[ly][lx] += v; } void build(){ for(int i = 0; i <= h; i++) { for(int j = 1; j <= w; j++) { dat[i][j] += dat[i][j - 1]; } } for(int i = 0; i <= w; i++) { for(int j = 1; j <= h; j++) { dat[j][i] += dat[j - 1][i]; } } } const std::vector& operator[](int y) const { assert(0 <= y && y < h); return dat[y]; } std::vector& operator[](int y) { assert(0 <= y && y < h); return dat[y]; } }; using namespace std; using ll = long long; int main() { ios::sync_with_stdio(false); cin.tie(0); int n, m; cin >> n >> m; vector> A(m, vector(m)); for(int y = 0; y < m; y++){ for(int x = 0; x < m; x++){ cin >> A[y][x]; } } CumulativeSum2D CS(A); imos2D imos(m, m); for(int ly = 0; ly < m; ly++){ for(int ry = ly + 1; ry <= m; ry++){ vector> tmp(m + 1); for(int rx = 0; rx <= m; rx++){ tmp[rx] = {CS.query(ly, 0, ry, rx), rx}; } sort(tmp.begin(), tmp.end()); for(int x = 0; x < m; ){ int pre = x; while(x <= m && tmp[x].first == tmp[pre].first) x++; for(int l = pre; l < x; l++){ for(int r = l + 1; r < x; r++){ imos.add(ly, tmp[l].second, ry, tmp[r].second, 1); } } } } } imos.build(); while(n--){ int y, x; cin >> y >> x; cout << imos[y - 1][x - 1] << '\n'; } }