Print Check

本文介绍了一个二维矩阵涂色的问题及其实现方案。该方案通过记录每一行和每一列的最后涂色状态,来高效地输出整个矩阵经过一系列涂色操作后的最终状态。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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 ri in color ai;
  2. Paint all cells in column ci in color ai.

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

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

Input

The first line of the input contains three integers n, m and k (1  ≤  n,  m  ≤ 5000, n·m ≤ 100 000, 1 ≤ k ≤ 100 000) — the dimensions of the sheet and the number of operations, respectively.

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

  • ri ai (1 ≤ ri ≤ n, 1 ≤ ai ≤ 109), means that row ri is painted in color ai;
  • ci ai (1 ≤ ci ≤ m, 1 ≤ ai ≤ 109), means that column ci is painted in color ai.
Output

Print n lines containing m integers each — the resulting table after all operations are applied.

Example
Input
3 3 3
1 1 3
2 2 1
1 2 2
Output
3 1 3 
2 2 2 
0 1 0 
Input
5 3 5
1 1 1
1 3 1
1 5 1
2 1 1
2 3 1
Output
1 1 1 
1 0 1 
1 1 1 
1 0 1 
1 1 1 
Note

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.

题意:

在n*m的方格上涂色,一共有k次操作,每次操作输入3个数字op,a,b

op==1   在第a行上涂b色

op==2  在第a列上涂b色

颜色能够覆盖,即一个方格被多次涂色后,只能看到最后最后一次涂的颜色

打印k次操作后格子的颜色状况

代码:

#include<stdio.h>
#include<string.h>
struct node{
    int a;//记录颜色
    int t;//记录被涂色的时间
}row[5005],col[5005];
int n,m,k;
int main(){
    memset(row,0,sizeof(row));
    memset(col,0,sizeof(col));
    scanf("%d%d%d",&n,&m,&k);
    int i;
    for(i=1;i<=k;i++){//注意要从1开始
        int op,p,q;
        scanf("%d%d%d",&op,&p,&q);
        if(op==1){
            row[p].a=q;
            row[p].t=i;
        }
        else{
            col[p].a=q;
            col[p].t=i;
        }
    }
    int j;
    for(i=1;i<=n;i++){  //打印结果
        int first=1;
        for(j=1;j<=m;j++){  //打印最后被涂的颜色,没被涂过输出0
            if(first) first=0;
            else printf(" ");
            if(row[i].t>col[j].t){
                printf("%d",row[i].a);
            }
            else{
                printf("%d",col[j].a);
            }
        }
        printf("\n");
    }
return 0;
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值