题解 | #【模板】静态矩阵和(二维前缀和)#
【模板】静态矩阵和(二维前缀和)
https://www.nowcoder.com/practice/111cdd09f7c442f696e8127d08ece90f
import java.io.*; import java.util.*; import java.math.BigInteger; public class Main { static void solve() { int n = in.nextInt(), m = in.nextInt(), q = in.nextInt(); long[][] a = new long[n+10][m+10], s = new long[n+10][m+10]; for(int i=1;i<=n;i++){ for(int j=1;j<=m;j++){ a[i][j] = in.nextLong(); s[i][j]=a[i][j]+s[i][j-1]+s[i-1][j]-s[i-1][j-1]; } } while(q-->0) { int x1 = in.nextInt(), y1 = in.nextInt(), x2 = in.nextInt(), y2 =in.nextInt(); out.println(s[x2][y2]-s[x2][y1-1]-s[x1-1][y2]+s[x1-1][y1-1]); } } public static void main(String[] args) { solve(); out.flush(); } static FastReader in = new FastReader(); static PrintWriter out = new PrintWriter(System.out); static class FastReader { static BufferedReader br; static StringTokenizer st; FastReader() { br = new BufferedReader(new InputStreamReader(System.in)); } String next() { String str = ""; while(st==null||!st.hasMoreElements()) { try { str = br.readLine(); }catch(IOException e) { throw new RuntimeException(e); } st = new StringTokenizer(str); } return st.nextToken(); } int nextInt() { return Integer.parseInt(next()); } double nextDouble() { return Double.parseDouble(next()); } long nextLong() { return Long.parseLong(next()); } } }