Codeforces Round #344 (Div. 2) B. Print Check【思维】

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 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的矩阵,初始值为0,输出进行k次操作后的矩阵。


直接暴力处理的话,复杂度可以达到Maxn*Maxk或者Maxm*Maxk,为1e10,TLE是肯定的。以下为TLE的代码,可以试试。

#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<iomanip>
#include<cmath>
using namespace std;
const int maxn = 5005;
int Map[maxn][maxn],n,m,k,a,b,c;
int main()
{
    scanf("%d%d%d",&n,&m,&k);
    for(int i=0;i<k;i++){
        scanf("%d%d%d",&a,&b,&c);
        if(a==1){
            for(int j=1;j<=m;j++){
                Map[b][j]=c;
            }
        }
        else{
            for(int j=1;j<=n;j++){
                Map[j][b]=c;
            }
        }
    }
    for(int i=1;i<=n;i++){
        for(int j=1;j<=m;j++){
            printf("%d ",Map[i][j]);
        }
        printf("\n");
    }
    return 0;
}


看了官方的解析,又一次被codeforces精妙的解题思路震撼了。先看代码:

#include <cstdio>
#include <algorithm>
const int N = 5000, K = (int)1e5 + 1;
int n, m, k;
int t, p;
int l[N], c[N], x[K];
int main() {
    scanf("%d%d%d", &n, &m, &k);
    x[0] = 0;
    for (int i = 1; i <= k; ++i) {
        scanf("%d%d%d", &t, &p, &x[i]);
        if (t == 1)
            l[--p] = i;
        else
            c[--p] = i;
    }
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < m; ++j)
            printf("%d ", x[std::max(l[i], c[j])]);
        putchar('\n');
    }
    return 0;
}

它运用到了类似指针一样的思想,把每块东西都独立出来处理,灵活性和高效性十分突出。从代码可以看出,x[i]表示存储各行列要赋予的值;l [p]或c [p]表示i的值;由于p被输入的次序控制着,后输入的p会把前面输入的p值覆盖,达到节省每次修改行列值繁琐操作的时间。在输出的时候,只要得到当前位置较后输入的那个值的i,即可找到对应的值x [i]。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值