308783: CF1574E. Coloring

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Coloring

题意翻译

- 给一个 $n \times m$ 的 $空/0/1$ 矩阵(初始全空)。 - $k$ 次操作,每次操作会把一个格子样式修改。 - 求每次修改后填充剩下空格子的**方案数**,使所有 $2 \times 2$ 的子矩阵 $4$ 个元素之和为 $2$ (也就是有 $2$ 个 $1$ 和 $2$ 个 $0$)。 - $n,m \leq 10^6,k \leq 3 \times 10^5$,答案对 $998244353$ 取模。

题目描述

A matrix of size $ n \times m $ , such that each cell of it contains either $ 0 $ or $ 1 $ , is considered beautiful if the sum in every contiguous submatrix of size $ 2 \times 2 $ is exactly $ 2 $ , i. e. every "square" of size $ 2 \times 2 $ contains exactly two $ 1 $ 's and exactly two $ 0 $ 's. You are given a matrix of size $ n \times m $ . Initially each cell of this matrix is empty. Let's denote the cell on the intersection of the $ x $ -th row and the $ y $ -th column as $ (x, y) $ . You have to process the queries of three types: - $ x $ $ y $ $ -1 $ — clear the cell $ (x, y) $ , if there was a number in it; - $ x $ $ y $ $ 0 $ — write the number $ 0 $ in the cell $ (x, y) $ , overwriting the number that was there previously (if any); - $ x $ $ y $ $ 1 $ — write the number $ 1 $ in the cell $ (x, y) $ , overwriting the number that was there previously (if any). After each query, print the number of ways to fill the empty cells of the matrix so that the resulting matrix is beautiful. Since the answers can be large, print them modulo $ 998244353 $ .

输入输出格式

输入格式


The first line contains three integers $ n $ , $ m $ and $ k $ ( $ 2 \le n, m \le 10^6 $ ; $ 1 \le k \le 3 \cdot 10^5 $ ) — the number of rows in the matrix, the number of columns, and the number of queries, respectively. Then $ k $ lines follow, the $ i $ -th of them contains three integers $ x_i $ , $ y_i $ , $ t_i $ ( $ 1 \le x_i \le n $ ; $ 1 \le y_i \le m $ ; $ -1 \le t_i \le 1 $ ) — the parameters for the $ i $ -th query.

输出格式


For each query, print one integer — the number of ways to fill the empty cells of the matrix after the respective query, taken modulo $ 998244353 $ .

输入输出样例

输入样例 #1

2 2 7
1 1 1
1 2 1
2 1 1
1 1 0
1 2 -1
2 1 -1
1 1 -1

输出样例 #1

3
1
0
1
2
3
6

Input

题意翻译

- 给一个 $n \times m$ 的 $空/0/1$ 矩阵(初始全空)。 - $k$ 次操作,每次操作会把一个格子样式修改。 - 求每次修改后填充剩下空格子的**方案数**,使所有 $2 \times 2$ 的子矩阵 $4$ 个元素之和为 $2$ (也就是有 $2$ 个 $1$ 和 $2$ 个 $0$)。 - $n,m \leq 10^6,k \leq 3 \times 10^5$,答案对 $998244353$ 取模。

加入题单

算法标签: