codeforces 631B Print Check

来源:互联网 发布:ubuntu kylin 14.04 编辑:程序博客网 时间:2024/06/04 19:48

B. Print Check
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard 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:

Paint all cells in row ri in color ai;
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:

1 ri ai (1 ≤ ri ≤ n, 1 ≤ ai ≤ 109), means that row ri is painted in color ai;
2 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.

Examples
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.

题目简单,但是处理不好会超时。

//// Created by 王若璇 on 16/3/4.//#include <iostream>#include <algorithm>#include <cstdio>#include <cstring>#include <vector>using namespace std;const int max_n = 5050;struct pp{    int num;    int a;    bool operator<(const pp &p) const {        return num<p.num;    }    pp(){}    pp(int num,int a){        this->num = num;        this->a = a;    }    void clear(){        this->num = 0;        this->a = 0;    }};pp row[max_n];pp column[max_n];int main(){    ios::sync_with_stdio(false);    cin.tie(NULL);    int n,m,k;    while (cin>>n>>m>>k){        int op,id,num;        for(int i = 0;i<max_n;i++){            row[i].clear();            column[i].clear();        }        for(int i = 1;i<=k;i++){            cin>>op>>id>>num;            if(op==1){                if(id>n){                    continue;                }                row[id] = pp(i,num);            } else{                if(id>m){                    continue;                }                column[id] = pp(i,num);            }        }        for(int j = 1;j<=n;j++){            for(int i = 1;i<=m;i++){                if(row[j]<column[i]){                    cout<<column[i].a<<" ";                } else{                    cout<<row[j].a<<" ";                }            }            cout<<'\n';        }    }    return 0;}
0 0
原创粉丝点击