题目
CodeForces - 631B——Print Check
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.
想法
1.N +M的空间:row[N] 和col[N]
2.常量空间,如代码所示
链接
洛谷链接: 点这里.
代码
#include<iostream>
#include<algorithm>
#include<cstring>
using namespace std;
const int N = 1e6 + 1e3;
int n , m , k;
int ma[N] , tim[N];
/*
(i,j) -> (i * (n+1) + j) X
应该是 (i * (m+1) + j )
数组开小了1e5?哦,n*m<=1e5,然后我是从0开始,有一行m没算进去
*/
int main(){
std::ios::sync_with_stdio(false);
int i , j , tem , com , loc;
cin>>n>>m>>k;
memset(ma , 0 , sizeof(ma));
memset(tim , 0 , sizeof(tim));
for(i = 1 ; i <= k ; i ++ ){
cin>>com>>loc>>tem;
if(com == 1){
tim[(loc)*(m+1)] = i;
ma[(loc)*(m+1)] = tem;
}else{
tim[loc] = i;
ma[loc] = tem;
}
}
for(i = 1 ; i <= n ; i ++ ){
for(j = 1 ; j <= m ; j ++ ){
if(tim[i*(m+1)] > tim[j]){
cout<<ma[i*(m+1)]<<" ";
}else{
cout<<ma[j]<<" ";
}
}
cout<<endl;
}
return 0;
}
tmd,一个是i*(m+1) + j,写成i*(n+1)+j,一个是数组开小了,俩bug找了俩小时呜呜呜

307

被折叠的 条评论
为什么被折叠?



