CF631B.Print Check

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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×mn×m . Consider the list as a table consisting of nn rows and mm columns. Rows are numbered from top to bottom with integers from 11 to nn , while columns are numbered from left to right with integers from 11 to mm . Initially, all cells are painted in color 00 .

Your program has to support two operations:

  1. Paint all cells in row rir_{i} in color aia_{i} ;
  2. Paint all cells in column cic_{i} in color aia_{i} .

If during some operation ii there is a cell that have already been painted, the color of this cell also changes to aia_{i} .

Your program has to print the resulting table after kk operation.

输入格式

The first line of the input contains three integers nn , mm and kk ( 1<=n,m<=50001<=n,m<=5000 , nm<=100000n·m<=100000 , 1<=k<=1000001<=k<=100000 ) — the dimensions of the sheet and the number of operations, respectively.

Each of the next kk lines contains the description of exactly one query:

  • 1 ri ai1 r_{i} a_{i} ( 1<=ri<=n1<=r_{i}<=n , 1<=ai<=1091<=a_{i}<=10^{9} ), means that row rir_{i} is painted in color aia_{i} ;
  • 2 ci ai2 c_{i} a_{i} ( 1<=ci<=m1<=c_{i}<=m , 1<=ai<=1091<=a_{i}<=10^{9} ), means that column cic_{i} is painted in color aia_{i} .

输出格式

Print nn lines containing mm 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.

首页