fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3.  
  4. int main() {
  5. // your code goes here
  6. int n,q,c; cin>>n>>q>>c;
  7. int dp[c+1][101][101]={0};
  8. while(n--){
  9. int x,y,s; cin>>x>>y;
  10. cin>>dp[0][x][y];
  11. }
  12. //
  13. for(int x=1;x<=100;x++){
  14. for(int y=1;y<=100;y++){
  15. cout<<dp[0][x][y]<<" ";
  16. }
  17. cout<<endl;
  18. }
  19. //
  20. for(int i=1;i<=c;i++){
  21. for(int x=1;x<=100;x++){
  22. for(int y=1;y<=100;y++){
  23. dp[i][x][y]= 1+dp[i-1][x][y];
  24. if(dp[i][x][y]>c) dp[i][x][y]=0;
  25. }
  26. }
  27. }
  28. for(int i=0;i<=c;i++){
  29. for(int x=1;x<=100;x++){
  30. for(int y=1;y<=100;y++){
  31. dp[i][x][y]+=dp[i][x-1][y]+dp[i][x][y-1]-dp[i][x-1][y-1];
  32. }
  33. }
  34. }
  35. while(q--){
  36. int t,x1,y1,x2,y2;
  37. cin>>t>>x1>>y1>>x2>>y2;
  38. if(t<=c){
  39. cout<<dp[t][x2][y2]+dp[t][x1-1][y1-1]-dp[t][x1-1][y2]-dp[t][x2][y1-1]<<endl;
  40. }
  41. else{
  42. cout<<"0\n";
  43. }
  44. }
  45. return 0;
  46. }
Success #stdin #stdout 0.01s 5268KB
stdin
2 3 3
1 1 1
3 2 0
2 1 1 2 2
0 2 1 4 5
5 1 1 5 5
stdout
9
0
0