比赛 20170919普及组 评测结果 AAAAAAAAAA
题目名称 失落的猴子 最终得分 100
用户昵称 瑆の時間~無盡輪迴·林蔭 运行时间 0.911 s
代码语言 C++ 内存使用 4.14 MiB
提交时间 2017-09-19 20:08:12
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
int bu[1001][1001]={0};
int main()
{
	freopen("lostmonkey.in","r",stdin);
	freopen("lostmonkey.out","w",stdout);
	int n,m,k;
	cin>>n>>m>>k;
	for(int i=1;i<=k;i++)
	{
		int x1,y1,x2,y2,l;
		cin>>x1>>y1>>x2>>y2>>l;
		for(int z=x1;z<=x2;z++)
		{
			for(int j=y1;j<=y2;j++)
			{
				bu[z][j]=l;
			}
		}
	}
	for(int i=1;i<=n;i++)
	{
		for(int j=1;j<=m;j++)
		{
			cout<<bu[i][j];
		}
		cout<<endl;
	}
	return 0;
}