#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define fi first
#define se second
#define pii pair<ll, ll>
ll n, m;
ll x, y, a, b;
ll sirina, x2, y2, a2;
ll q, p;
vector <vector<ll>> kvadrat;
vector <vector<ll>> trokut;
vector <vector<ll>> trokut2;
vector <ll> bla;
ll zbr, sol, cnt;
bool granice(int x, int y) {
if (1 <= x && x <= n && 1 <= y && y <= m) return true;
return false;
}
int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> n >> m;
vector<vector<ll>> mat(n + 2, vector<ll>(m + 2));
vector<vector<ll>> kvadrat(n + 2, vector<ll>(m + 2));
vector<vector<ll>> trokut(n + 2, vector<ll>(m + 2));
vector<vector<ll>> trokut2(n + 2, vector<ll>(m + 2));
cin >> p;
for (int i = 0; i < p; i++) {
cin >> x >> y >> a >> b;
x2 = x;
y2 = y;
a2 = a;
mat[x][y] += a;
sirina = 1;
while (a > 0 && granice(x, 1)) {
trokut[x][max(1ll, y)] += a;
trokut[x][max(1ll, y)] -= a;
x--;
y--;
sirina += 2;
a -= b;
}
x = x2;
y = y2;
a = a2;
sirina = 1;
while (a > 0 && granice(x, 1)) {
trokut[x][max(1ll, y)] += a;
trokut[x][max(1ll, y)] -= a;
x++;
y--;
sirina += 2;
a -= b;
}
x = x2;
y = y2;
a = a2;
sirina = 1;
while (a > 0 && granice(1, y)) {
trokut2[max(1ll, min(n + 1, x + 1))][y] += a;
trokut2[max(1ll, min(n + 1, x + sirina - 1))][y] -= a;
x--;
y++;
sirina += 2;
a -= b;
}
x = x2;
y = y2;
a = a2;
sirina = 1;
while (a > 0 && granice(1, y)) {
trokut2[max(1ll, min(n + 1, x + 1))][y] += a;
trokut2[max(1ll, min(n + 1, x + sirina - 1))][y] -= a;
x--;
y--;
sirina += 2;
a -= b;
}
}
for (int i = 1; i <= n; i++) {
zbr = 0;
for (int j = 1; j <= m; j++) {
zbr += trokut[i][j];
mat[i][j] += zbr;
}
}
for (int j = 1; j <= m; j++) {
zbr = 0;
for (int i = 1; i <= n; i++) {
zbr += trokut2[i][j];
mat[i][j] += zbr;
}
}
for (int i = 1; i <= n; i++) {
for (int j = 1; j <= m; j++) {
kvadrat[i][j] = kvadrat[i - 1][j] + kvadrat[i][j - 1] - kvadrat[i - 1][j - 1] + mat[i][j];
}
}
cin >> q;
while (q--) {
cin >> x >> y >> x2 >> y2;
sol = kvadrat[x2][y2] - kvadrat[x2][y - 1] - kvadrat[x - 1][y2] + kvadrat[x - 1][y - 1];
cnt = ((x2 - x + 1) * (y2 - y + 1));
if (sol % cnt >= (cnt + 1) / 2) sol = sol / ((x2 - x + 1) * (y2 - y + 1)) + 1;
else sol = sol / ((x2 - x + 1) * (y2 - y + 1));
cout << sol << "\n";
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1000 ms |
548648 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
849 ms |
548216 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
92 ms |
79704 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
87 ms |
87456 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
668 ms |
549460 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
662 ms |
221024 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
139 ms |
81532 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
425 ms |
142188 KB |
Output isn't correct |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1053 ms |
548364 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1090 ms |
548180 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1079 ms |
80612 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1044 ms |
79440 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1070 ms |
80516 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1092 ms |
79608 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |