比赛 20170919普及组 评测结果 WWWWWWWWWW
题目名称 失落的猴子 最终得分 0
用户昵称 . 运行时间 0.445 s
代码语言 C++ 内存使用 4.17 MiB
提交时间 2017-09-19 20:57:33
显示代码纯文本
#include<iostream> 
#include<cstdio> 
#include<iomanip> 
using namespace std; 
int ge[1005][1005]={0};
int main(){
	freopen("lostmonkey.in","r",stdin);
	freopen("lostmonkey.out","w",stdout);
	int n,m,k,x1,y1,x2,y2,t;
	cin>>n>>m>>k;
	for(int a=1;a<=k;a++){
		cin>>x1>>y1>>x2>>y2>>t;
		for(;y1<=y2;y1++){
			for(;x1<=x2;x1++){
				ge[y1][x1]=t;
			}
		}
	}
	for(int a=1;a<=m;a++){
		for(int b=1;b<=n;b++){
			cout<<ge[a][b];
		}
	}
	return 0;
}