比赛 exam 评测结果 AAAAAAAAAA
题目名称 失落的猴子 最终得分 100
用户昵称 东林桂香 运行时间 0.937 s
代码语言 C++ 内存使用 4.13 MiB
提交时间 2017-07-04 08:23:40
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
int ha[1000][1000];
int n,m,k,x1,y1,x2,y2,l;
void la(){
	for(int i=1;i<=n;i++)
	  for(int j=1;j<=m;j++)
	    ha[i][j]=0;
}
void hia(){
	for(int po=x1;po<=x2;po++)
	  for(int co=y1;co<=y2;co++)
	    ha[po][co]=l;
}
int main()
{
	freopen("lostmonkey.in","r",stdin);
	freopen("lostmonkey.out","w",stdout);
	scanf("%d%d%d",&n,&m,&k);
	la();
	for(int i=1;i<=k;i++)
	{
		scanf("%d%d%d%d%d",&x1,&y1,&x2,&y2,&l);
		hia();
	}
	for(int i=1;i<=n;i++)
	  for(int j=1;j<=m;j++)
	  {
	  	printf("%d",ha[i][j]);
	  	if(j==m)printf("\n");
	  }
	fclose(stdin);
	fclose(stdout);
	return 0;
}