A10367 | Print Check
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Kris works in a large company "Blake Technologies". As a best engineer of the company he was assigned a task to develop a printer that will be able to print horizontal and vertical strips. First prototype is already built and Kris wants to tests it. He wants you to implement the program that checks the result of the printing.
Printer works with a rectangular sheet of paper of size $n×m$ . Consider the list as a table consisting of $n$ rows and $m$ columns. Rows are numbered from top to bottom with integers from $1$ to $n$ , while columns are numbered from left to right with integers from $1$ to $m$ . Initially, all cells are painted in color $0$ .
Your program has to support two operations:
1. Paint all cells in row $r_{i}$ in color $a_{i}$ ;
2. Paint all cells in column $c_{i}$ in color $a_{i}$ .
If during some operation $i$ there is a cell that have already been painted, the color of this cell also changes to $a_{i}$ .
Your program has to print the resulting table after $k$ operation.
Printer works with a rectangular sheet of paper of size $n×m$ . Consider the list as a table consisting of $n$ rows and $m$ columns. Rows are numbered from top to bottom with integers from $1$ to $n$ , while columns are numbered from left to right with integers from $1$ to $m$ . Initially, all cells are painted in color $0$ .
Your program has to support two operations:
1. Paint all cells in row $r_{i}$ in color $a_{i}$ ;
2. Paint all cells in column $c_{i}$ in color $a_{i}$ .
If during some operation $i$ there is a cell that have already been painted, the color of this cell also changes to $a_{i}$ .
Your program has to print the resulting table after $k$ operation.
输入格式
The first line of the input contains three integers $n$ , $m$ and $k$ ( $1<=n,m<=5000$ , $n·m<=100000$ , $1<=k<=100000$ ) — the dimensions of the sheet and the number of operations, respectively.
Each of the next $k$ lines contains the description of exactly one query:
- $1 r_{i} a_{i}$ ( $1<=r_{i}<=n$ , $1<=a_{i}<=10^{9}$ ), means that row $r_{i}$ is painted in color $a_{i}$ ;
- $2 c_{i} a_{i}$ ( $1<=c_{i}<=m$ , $1<=a_{i}<=10^{9}$ ), means that column $c_{i}$ is painted in color $a_{i}$ .
Each of the next $k$ lines contains the description of exactly one query:
- $1 r_{i} a_{i}$ ( $1<=r_{i}<=n$ , $1<=a_{i}<=10^{9}$ ), means that row $r_{i}$ is painted in color $a_{i}$ ;
- $2 c_{i} a_{i}$ ( $1<=c_{i}<=m$ , $1<=a_{i}<=10^{9}$ ), means that column $c_{i}$ is painted in color $a_{i}$ .
输出格式
Print $n$ lines containing $m$ integers each — the resulting table after all operations are applied.
输入输出样例
输入 #1
3 3 3 1 1 3 2 2 1 1 2 2
输出 #1
3 1 3 2 2 2 0 1 0
输入 #2
5 3 5 1 1 1 1 3 1 1 5 1 2 1 1 2 3 1
输出 #2
1 1 1 1 0 1 1 1 1 1 0 1 1 1 1
The figure below shows all three operations for the first sample step by step. The cells that were painted on the corresponding step are marked gray.


C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted