Advertisement
Araf_12

prefix sum of the two-dimensional array

Feb 14th, 2023 (edited)
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.51 KB | None | 0 0
  1. // prefix sum of the two-dimensional array
  2. #include<bits/stdc++.h>
  3. using namespace std;
  4. int main() {
  5.     int n,m;cin>>n>>m;
  6.     int ar[n][m],pfs[n][m];
  7.     pfs[0][0]=0;
  8.     for(int i=1;i<=n;i++){
  9.         for(int j=1;j<=m;j++){
  10.             cin>>ar[i][j];
  11.             pfs[i][j]=ar[i][j]+pfs[i-1][j]+pfs[i][j-1]-pfs[i-1][j-1];
  12.         }
  13.     }
  14.  
  15.     int q,a,b,c,d;cin>>q;
  16.     while(q--){
  17.         cin>>a>>b>>c>>d;
  18.         cout<<pfs[c][d]-pfs[a-1][d]-pfs[c][b-1]+pfs[a-1][b-1]<<endl;
  19.     }
  20.  
  21.     return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement