| 시간 제한 | 메모리 제한 | 제출 | 정답 | 맞힌 사람 | 정답 비율 |
|---|---|---|---|---|---|
| 1 초 | 1024 MB | 87 | 25 | 25 | 30.488% |
Salma plans to colour a clay mosaic on a wall. The mosaic is an $N \times N$ grid, made of $N$ initially uncoloured 1ドル \times 1$ square tiles. The rows of the mosaic are numbered from 0ドル$ to $N - 1$ from top to bottom, and the columns are numbered from 0ドル$ to $N - 1$ from left to right. The tile in row $i$ and column $j$ (0ドル ≤ i < N,ドル 0ドル ≤ j < N$) is denoted by $(i, j)$. Each tile must be coloured either white (denoted by 0ドル$) or black (denoted by 1ドル$).
To colour the mosaic, Salma first picks two arrays $X$ and $Y$ of length $N,ドル each consisting of values 0ドル$ and 1ドル,ドル such that $X[0] = Y [0]$. She colours the tiles of the topmost row (row 0ドル$) according to array $X,ドル such that the colour of tile $(0, j)$ is $X[j]$ (0ドル ≤ j < N$). She also colours the tiles of the leftmost column (column 0ドル$) according to array $Y,ドル such that the colour of tile $(i, 0)$ is $Y [i]$ (0ドル ≤ i < N$).
Then she repeats the following steps until all tiles are coloured:
It can be shown that the final colours of the tiles do not depend on the order in which Salma is colouring them.
Yasmin is very curious about the colours of the tiles in the mosaic. She asks Salma $Q$ questions, numbered from 0ドル$ to $Q - 1$. In question $k$ (0ドル ≤ k < Q$), Yasmin specifies a subrectangle of the mosaic by its:
The answer to the question is the number of black tiles in this subrectangle. Specifically, Salma should find how many tiles $(i, j)$ exist, such that $T[k] ≤ i ≤ B[k],ドル $L[k] ≤ j ≤ R[k],ドル and the colour of tile $(i, j)$ is black.
Write a program that answers Yasmin's questions.
You should implement the following procedure.
std::vector<long long> mosaic( std::vector<int> X, std::vector<int> Y, std::vector<int> T, std::vector<int> B, std::vector<int> L, std::vector<int> R)
| 번호 | 배점 | 제한 |
|---|---|---|
| 1 | 5 | $N ≤ 2$; $Q ≤ 10$ |
| 2 | 7 | $N ≤ 200$; $Q ≤ 200$ |
| 3 | 7 | $T[k] = B[k] = 0$ (for each $k$ such that 0ドル ≤ k < Q$) |
| 4 | 10 | $N ≤ 5000$ |
| 5 | 8 | $X[i] = Y [i] = 0$ (for each $i$ such that 0ドル ≤ i < N$) |
| 6 | 22 | $T[k] = B[k]$ and $L[k] = R[k]$ (for each $k$ such that 0ドル ≤ k < Q$) |
| 7 | 19 | $T[k] = B[k]$ (for each $k$ such that 0ドル ≤ k < Q$) |
| 8 | 22 | No additional constraints. |
Consider the following call.
mosaic([1, 0, 1, 0], [1, 1, 0, 1], [0, 2], [3, 3], [0, 0], [3, 2])
This example is illustrated in the pictures below. The left picture shows the colours of the tiles in the mosaic. The middle and right pictures show the subrectangles Yasmin asked about in the first and second question, respectively.
The answers to the questions (that is, the numbers of ones in the shaded rectangles) are 7ドル$ and 3ドル,ドル respectively. Hence, the procedure should return $[7, 3]$.
Input format:
N X[0] X[1] ... X[N-1] Y[0] Y[1] ... Y[N-1] Q T[0] B[0] L[0] R[0] T[1] B[1] L[1] R[1] ... T[Q-1] B[Q-1] L[Q-1] R[Q-1]
Output format:
C[0] C[1] ... C[S-1]
Here, $S$ is the length of the array $C$ returned by mosaic.
Olympiad > International Olympiad in Informatics > IOI 2024 > Day 2 5번
C++17, C++20, C++17 (Clang), C++20 (Clang)