시간 제한메모리 제한제출정답맞힌 사람정답 비율
1.5 초 512 MB105550.000%

문제

Little Q likes positive big integers in base $k$ notation, but not all of them. He doesn't like integers with zeroes, including leading zeroes. Additionally, he is particular about the number of occurrences of each digit. Formally, his preferences can be described as a binary matrix $g_{1 .. k - 1, 0 .. n}$, where for every digit $i$ from $1$ to $k - 1$, if $g_{i, j} = 0$, he doesn't like integers which contain exactly $j$ copies of digit $i$. He also can't accept any digit appearing more than $n$ times. The integer must contain at least one digit.

Little Q's taste changes every day. There are $m$ days in total, and on day $i$, the value $g_{u_i, v_i}$ is flipped ($0$ becomes $1$ and $1$ becomes $0$). Let $\mathrm{cnt} (i)$ denote the number of big integers which Little Q likes after $i$-th day's change, and $\mathrm{cnt} (0)$ denote the answer before all changes. Your task is to calculate the following:

$$\left( \sum_{i = 0}^{m} \mathrm{cnt} (i) \right) \bmod 786\,433\text{.}$$

입력

The first line of the input contains three integers $k$, $n$ and $m$: the base, the upper limit and the number of days ($3 \leq k \leq 10$, $1 \leq n \leq 1.4 \cdot 10^4$, $1 \leq  m \leq 200$).

In the next $k - 1$ lines, line $i$ contains $n + 1$ integers $g_{i, 0}$, $g_{i, 1}$, $\ldots$, $g_{i, n}$ ($0 \leq g_{i, j} \leq 1$). Together they provide the initial matrix $g$.

After that follow $m$ lines, $i$-th line contains two integers $u_i$ and $v_i$ which mean that on $i$-th day, the value $g_{u_i, v_i}$ is flipped ($1 \leq u_i \leq k - 1$, $0 \leq v_i \leq n$).

출력

Print a single line with a single integer: the answer to the problem.

예제 입력 1

3 2 2
101
010
1 1
1 2

예제 출력 1

13