记录编号 |
35512 |
评测结果 |
AAAAAAAAAA |
题目名称 |
失落的猴子 |
最终得分 |
100 |
用户昵称 |
Citron酱 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
2.674 s |
提交时间 |
2012-02-23 10:45:19 |
内存使用 |
0.34 MiB |
显示代码纯文本
#include <cstdio>
#define I_F "lostmonkey.in"
#define O_F "lostmonkey.out"
const int Maxl=5000+1;
int n,m,l;
int x1[Maxl], x2[Maxl], y1[Maxl], y2[Maxl];
short c[Maxl];
void Input();
void Output();
int main()
{
Input();
Output();
return 0;
}
void Input()
{
freopen(I_F,"r",stdin);
scanf("%d%d%d",&n,&m,&l);
for (int i=1; i<=l; i++)
scanf("%d%d%d%d%d",&x1[i],&y1[i],&x2[i],&y2[i],&c[i]);
x1[0]=y1[0]=1;
c[0]=0;
x2[0]=n, y2[0]=m;
}
void Output()
{
freopen(O_F,"w",stdout);
for (int i=1; i<=n; i++)
{
for (int j=1; j<=m; j++)
for (int k=l; k>=0; k--)
if (x1[k]<=i && y1[k]<=j && x2[k]>=i && y2[k]>=j)
{
printf("%hd",c[k]);
break;
}
printf("\n");
}
}