CodeForces 631B B. Print Check(水题水题)

来源:互联网 发布:java进度条显示百分比 编辑:程序博客网 时间:2024/06/05 01:56
B. Print Check
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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 nm and k (1  ≤  n,  m  ≤ 5000n·m ≤ 100 0001 ≤ 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 ≤ n1 ≤ ai ≤ 109), means that row ri is painted in color ai;
  • ci ai (1 ≤ ci ≤ m1 ≤ 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.

Examples
input
3 3 31 1 32 2 11 2 2
output
3 1 3 2 2 2 0 1 0 
input
5 3 51 1 11 3 11 5 12 1 12 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.



题意: 题意很简单。
思路  : 开4个数组,分别表示,某一行 的元素是多少,某一列的元素是多少, 某一行最后一次染色是那一次,某一列最后一次染色是哪一次。然后
暴力每一行每一列,这个元素所在的行,列 ,最后一次染色是航染色还是列染色。   


代码: 
#include<stdio.h>#include<string.h>#include<iostream>#include<algorithm>#define N 5005using namespace std;int a[N][N];int h[N],l[N],fh[N],fl[N];int n,m,k;int main(){scanf("%d %d %d",&n,&m,&k);int op,x,c;int i,j;for(i=1;i<=k;i++){scanf("%d %d %d",&op,&x,&c);if(op==1){h[x]=c;fh[x]=i;}else{l[x]=c;fl[x]=i;}}for(i=1;i<=n;i++){for(j=1;j<=m;j++){if(fh[i]>fl[j]){printf("%d ",h[i]);}else printf("%d ",l[j]);}printf("\n");}return 0;}


原创粉丝点击