#include <bits/stdc++.h>
using namespace std;
typedef long long i64;
const int nmax = 25e5;
vector<vector<i64>> s;
i64 sum[nmax + 1];
struct aintnod {
i64 s, r;
} aint[4 * nmax + 1];
void update (int nod, int x, int y, int st, int dr, i64 a, i64 b) {
if (st <= x && y <= dr) {
aint[nod].s += a + (x - st) * b;
aint[nod].r += b;
return ;
}
int mij = (x + y) / 2;
if (st <= mij)
update(2 * nod, x, mij, st, dr, a, b);
if (mij < dr)
update(2 * nod + 1, mij + 1, y, st, dr, a, b);
}
void build (int nod, int x, int y) {
if (x == y) {
sum[x] = aint[nod].s;
return ;
}
int mij = (x + y) / 2;
update(2 * nod, x, mij, x, mij, aint[nod].s, aint[nod].r);
update(2 * nod + 1, mij + 1, y, mij + 1, y, aint[nod].s + aint[nod].r * (mij + 1 - x), aint[nod].r);
build(2 * nod, x, mij);
build(2 * nod + 1, mij + 1, y);
}
int main () {
int w, h, n;
cin >> w >> h >> n;
if (h != 1) {
s.resize(w + 1, vector<i64> (h + 1, 0));
for (int i = 1; i <= n; ++ i) {
int x, y, a, b;
cin >> x >> y >> a >> b;
for (int j = 1; j <= w; ++ j)
for (int k = 1; k <= h; ++ k) {
int c = max(0LL, a - 1LL * b * max(abs(x - j), abs(y - k)));
s[j][k] += c;
}
}
for (int i = 1; i <= w; ++ i)
for (int j = 1; j <= h; ++ j)
s[i][j] += s[i - 1][j] + s[i][j - 1] - s[i - 1][j - 1];
} else if (h == 1) {
for (int i = 1; i <= n; ++ i) {
int x, y, a, b;
cin >> x >> y >> a >> b;
int pfin = min(w, x + a / b);
update(1, 1, w, x, pfin, a, -b);
pfin = max(1, x - a / b);
if (pfin <= x - 1)
update(1, 1, w, pfin, x - 1, a - b * (x - pfin), b);
}
build(1, 1, w);
for (int i = 1; i <= w; ++ i)
sum[i] += sum[i - 1];
int q;
cin >> q;
for (int i = 1; i <= q; ++ i) {
int a, b, x, y;
cin >> a >> b >> x >> y;
i64 total = sum[x] - sum[a - 1];
i64 arie = (x - a + 1);
i64 r = total / arie;
if (total % arie >= (arie + 1) / 2) ++ r;
cout << r << "\n";
}
exit(0);
}
int q;
cin >> q;
for (int i = 1; i <= q; ++ i) {
int a, b, x, y;
cin >> a >> b >> x >> y;
i64 total = s[x][y] - s[a - 1][y] - s[x][b - 1] + s[a - 1][b - 1];
i64 arie = (x - a + 1) * (y - b + 1);
i64 r = total / arie;
if (total % arie >= (arie + 1) / 2) ++ r;
cout << r << "\n";
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
175 ms |
151160 KB |
Output is correct |
2 |
Correct |
416 ms |
4572 KB |
Output is correct |
3 |
Correct |
418 ms |
3896 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
184 ms |
151444 KB |
Output is correct |
2 |
Correct |
467 ms |
4660 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
297 ms |
20220 KB |
Output is correct |
2 |
Correct |
476 ms |
2908 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
285 ms |
21980 KB |
Output is correct |
2 |
Correct |
510 ms |
2996 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
798 ms |
153820 KB |
Output is correct |
2 |
Correct |
488 ms |
5340 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
599 ms |
43656 KB |
Output is correct |
2 |
Correct |
523 ms |
4772 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
847 ms |
22756 KB |
Output is correct |
2 |
Correct |
465 ms |
3276 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1065 ms |
30004 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1069 ms |
152416 KB |
Time limit exceeded |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1079 ms |
152396 KB |
Time limit exceeded |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1074 ms |
20096 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1081 ms |
20096 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1077 ms |
20736 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1061 ms |
20224 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |