Skip to content

Commit d049ec3

Browse files
upd
1 parent 0e66015 commit d049ec3

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

solutions/gold/cses-1148

+6-6
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ prerequisites:
99

1010
## Explanation
1111

12-
Precompute $r_{i,j}$ as the number of continuous free cells starting from $(i, j)$ ending at $(i, j + r_{i, j})$,
13-
Similarly to [Maximum Buildin I](https://cses.fi/problemset/task/1147) apply monotonic stacks to find:
12+
Precompute $r_{i,j}$ as the maximum number of continuous free cells on line $i$ starting from $(i, j)$ to the right.
13+
Similarly to [Maximum Building I](https://cses.fi/problemset/task/1147) apply monotonic stacks to find:
1414
- $u_{i, j}$ , the last line above $i$ with cell $(x, j)$ such that $r_{x, j} > r_{i, j}$
1515
- $d_{i, j}$ , the last line under $i$ with cell $(y, j)$ such that $r_{y, j} \ge r_{i, j}$
1616

17-
Using [prefix sums](/silver/more-prefix-sums#2d-prefix-sums) and [difference arrays](https://medium.com/@ishankkatiyar162/understanding-difference-array-the-underrated-constant-time-range-update-algorithm-part-1-e432ada7f1f5) we can effitiently update the answer matrix.
18-
Having $r_{i,j}$, $u_{i,j}$ and $d_{i,j}$ precomputed, we know the upperbound and the lowerbound of the rectangle
19-
of of width $r_{i,j}$ i.e. how much it can expand up above and below line $i$ maintaing width $r_{i, j}$.
20-
We'll do difference arrays on each column independently. Therefore, the updates of the answer matrix look like this:
17+
Using [prefix sums](/silver/more-prefix-sums#2d-prefix-sums) and [difference arrays](https://codeforces.com/blog/entry/78762)
18+
we can efficiently update the answer matrix. Having $r_{i,j}$, $u_{i,j}$ and $d_{i,j}$ precomputed, we know the upperbound
19+
and the lowerbound of the rectangle of of width $r_{i,j}$ i.e. how much it can expand above and below line $i$ maintaing width $r_{i, j}$.
20+
We'll do difference arrays on each column independently. Accordingly, the updates of the answer matrix look like this:
2121
- $ans[1][r_{i,j}]++$
2222
- $ans[i - u_{i, j} + 2][r_{i,j}]--$ , the upperbound
2323
- $ans[d_{i,j} - i + 2][r_{i, j}]]--$ , the lowerbound

0 commit comments

Comments
 (0)