You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: solutions/gold/cses-1148
+6-6
Original file line number
Diff line number
Diff line change
@@ -9,15 +9,15 @@ prerequisites:
9
9
10
10
## Explanation
11
11
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:
14
14
- $u_{i, j}$ , the last line above $i$ with cell $(x, j)$ such that $r_{x, j} > r_{i, j}$
15
15
- $d_{i, j}$ , the last line under $i$ with cell $(y, j)$ such that $r_{y, j} \ge r_{i, j}$
16
16
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:
21
21
- $ans[1][r_{i,j}]++$
22
22
- $ans[i - u_{i, j} + 2][r_{i,j}]--$ , the upperbound
23
23
- $ans[d_{i,j} - i + 2][r_{i, j}]]--$ , the lowerbound
0 commit comments