记录编号 |
452737 |
评测结果 |
AAAAAAAAAA |
题目名称 |
失落的猴子 |
最终得分 |
100 |
用户昵称 |
TARDIS |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.934 s |
提交时间 |
2017-09-20 09:40:12 |
内存使用 |
4.20 MiB |
显示代码纯文本
#include<cstdio>
#include<cmath>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;
const int maxn=1010;
int G[maxn][maxn];
int n,m,k;
void color(int x1,int y1,int x2,int y2,int type){
for (int i=x1;i<=x2;i++){
for (int j=y1;j<=y2;j++){
G[i][j]=type;
}
}
}
void beg(){
freopen("lostmonkey.in","r",stdin);
freopen("lostmonkey.out","w",stdout);
}
int main(){
beg();
scanf("%d%d%d",&n,&m,&k);
while (k--){
int x1,x2,y1,y2,type;
scanf("%d%d%d%d%d",&x1,&y1,&x2,&y2,&type);
color(x1,y1,x2,y2,type);
}
for (int i=1;i<=n;i++){
for (int j=1;j<=m;j++){
printf("%d",G[i][j]);
}
puts("");
}
}