比赛 20110725 评测结果 AAAAAAAAET
题目名称 失落的猴子 最终得分 80
用户昵称 201101 运行时间 0.000 s
代码语言 C++ 内存使用 0.00 MiB
提交时间 2011-07-25 11:28:43
显示代码纯文本
#include <fstream>
using namespace std;
int cloth[1001][1001];
int main(void)
{
	ifstream input("lostmonkey.in");
	ofstream output("lostmonkey.out");
	int i,j,j2,n,m,k,x,y,x2,y2,color;
	input>>n>>m>>k;
	for (i=1;i<=k;i++)
	{
		input>>x>>y>>x2>>y2>>color;
		for (j=x;j<=x2;j++)
			for (j2=y;j2<=y2;j2++)
				cloth[j][j2]=color;
	}
	for (i=1;i<=n;i++)
	{
		for (j=1;j<=m;j++)
			output<<cloth[i][j];
		output<<endl;
	}
	input.close();
	output.close();
	return(0);
}