#include <iostream>
#include <vector>
#include <queue>
#include <algorithm>
#include <set>
#include <stack>
#include <limits.h>
#include <math.h>
#include <iomanip>
#include <bitset>
#include <unordered_map>
#include <unordered_set>
#include <map>
#include <cstring>
#include <sstream>
#pragma GCC target("popcnt")
typedef long long ll;
typedef long double ld;
using namespace std;
const int MOD=1e9+7;
typedef pair<ll,ll>point;
//#define x first
//#define y second
int w,h;
class Matrix{
vector<ll>map_arr;
public:
void init_map(){
map_arr.resize(w*h);
}
ll get2(int x,int y){
if(x<0||y<0)
return 0;
return map_arr[y*w+x];
}
ll&get(int x,int y){
return map_arr[y*w+x];
}
void add_bounded(int x,int y,ll val){
if(x<0)
x=0;
if(y<0)
y=0;
if(x>=w)
return;
if(y>=h)
return;
get(x,y)+=val;
}
};
Matrix mat,mat_diag1,mat_diag2;
vector<ll>hor_vec,ver_vec;
void add_hor_line(int x1,int x2,ll val){
if(x1>=x2)
return;
hor_vec[x1]+=val;
if(x2<w)
hor_vec[x2]-=val;
}
void add_ver_line(int y1,int y2,ll val){
if(y1>=y2)
return;
ver_vec[y1]+=val;
if(y2<h)
ver_vec[y2]-=val;
}
void add_diagonal1(int x,int y,int l,ll val){
for(int i=0;i<l;i++)
mat.get(x+i,y+i)+=val;
}
void add_diagonal2(int x,int y,int l,ll val){
for(int i=0;i<l;i++)
mat.get(x-i,y+i)+=val;
}
int main(){
ios::sync_with_stdio(false);
cout.tie(NULL);
cin.tie(NULL);
cin>>w>>h;
mat.init_map();
mat_diag1.init_map();
mat_diag2.init_map();
hor_vec.resize(w);
ver_vec.resize(h);
int n;
cin>>n;
while(n--){
int x1,y1;
ll center,step;
cin>>x1>>y1>>center>>step;
x1--;y1--;
ll last_step=(center-1)%step+1;
int num_steps=(int)(center+step-1)/step;
if(x1>y1){
// hits ceiling
add_diagonal1(x1-min(num_steps-1,y1)+1,y1-min(num_steps-1,y1)+1,min(num_steps-1,y1),step);
add_hor_line(x1-min(num_steps-1,x1)+1,x1-y1+1,step);
if(x1<num_steps-1)
mat.get(0,0)+=step*(num_steps-1-x1);
}else{
// hits left wall
add_diagonal1(x1-min(num_steps-1,x1)+1,y1-min(num_steps-1,x1)+1,min(num_steps-1,x1),step);
add_ver_line(y1-min(num_steps-1,y1)+1,y1-x1+1,step);
if(y1<num_steps-1)
mat.get(0,0)+=step*(num_steps-1-y1);
}
if(x1+y1<w){
// hits ceiling
add_diagonal2(x1+min(num_steps-1,y1),y1-min(num_steps-1,y1)+1,min(num_steps-1,y1),-step);
add_hor_line(y1+x1+1,min(num_steps+x1,w),-step);
}else
add_diagonal2(x1+1,y1,min(num_steps-1,w-x1-1),-step);
if(x1+y1<h){
// hits left wall
add_diagonal2(x1,y1+1,min(num_steps-1,x1),-step);
add_ver_line(x1+y1+1,min(num_steps+y1,h),-step);
}else
add_diagonal2(x1,y1+1,min(num_steps-1,h-y1-1),-step);
if(w-x1<h-y1)
add_diagonal1(x1+1,y1+1,min(num_steps-1,w-x1-1),step);
else
add_diagonal1(x1+1,y1+1,min(num_steps-1,h-y1-1),step);
mat.add_bounded(x1-num_steps+1, y1-num_steps+1, last_step);
mat.add_bounded(x1-num_steps+1, y1+num_steps, -last_step);
mat.add_bounded(x1+num_steps, y1-num_steps+1, -last_step);
mat.add_bounded(x1+num_steps, y1+num_steps, last_step);
}
for(int i=0;i<w;i++){
if(i)
hor_vec[i]+=hor_vec[i-1];
mat.get(i,0)+=hor_vec[i];
}
for(int i=0;i<h;i++){
if(i)
ver_vec[i]+=ver_vec[i-1];
mat.get(0,i)+=ver_vec[i];
}
for(int x=0;x<w;x++)
for(int y=0;y<h;y++)
mat.get(x,y)+=mat.get2(x-1,y)+mat.get2(x,y-1)-mat.get2(x-1,y-1)+mat_diag1.get(x,y)+mat_diag2.get(x,y);
/*for(int y=0;y<h;y++){
for(int x=0;x<w;x++){
cout<<mat.get(x,y)<<" ";
}
cout<<"\n";
}*/
for(int x=0;x<w;x++)
for(int y=0;y<h;y++)
mat.get(x,y)+=mat.get2(x-1,y)+mat.get2(x,y-1)-mat.get2(x-1,y-1);
int q;
cin>>q;
while(q--){
int x1,y1,x2,y2;
cin>>x1>>y1>>x2>>y2;
x1--;y1--;
ll sum=mat.get2(x2-1,y2-1)+mat.get2(x1-1,y1-1)-mat.get2(x1-1,y2-1)-mat.get2(x2-1,y1-1);
ll area=(x2-x1)*(y2-y1);
ll res=sum/area;
if((sum%area)*2>=area)
res++;
cout<<res<<"\n";
}
return 0;
}
/*
4 3
2
1 1 7 3
3 2 4 2
4
1 2 2 3
1 1 4 3
4 2 4 2
1 3 4 3
*/
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
51 ms |
78548 KB |
Output is correct |
2 |
Correct |
54 ms |
2732 KB |
Output is correct |
3 |
Correct |
44 ms |
2304 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
49 ms |
78596 KB |
Output is correct |
2 |
Correct |
50 ms |
2688 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
67 ms |
119492 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
91 ms |
60000 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
131 ms |
80756 KB |
Output is correct |
2 |
Correct |
50 ms |
2848 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
87 ms |
34036 KB |
Output is correct |
2 |
Correct |
47 ms |
2636 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
190 ms |
61384 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
79 ms |
30076 KB |
Output is correct |
2 |
Runtime error |
47 ms |
2848 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
200 ms |
81000 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
202 ms |
80900 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
531 ms |
60996 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
779 ms |
61312 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
67 ms |
119712 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
70 ms |
119468 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |