记录编号 |
129315 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2011]铺地毯 |
最终得分 |
100 |
用户昵称 |
→震世逆空波→ |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.016 s |
提交时间 |
2014-10-19 19:32:07 |
内存使用 |
0.44 MiB |
显示代码纯文本
#include <cstdio>
using namespace std;
class Floor
{
public:
int a,b,g,k;
}s[10001];
int n,x,y;
bool Find(int x0,int y0,int lx,int ly,int x1,int y1)
{
if(((x1>=x0)&&(x1<=x0+lx))&&(y1>=y0)&&(y1<=y0+ly))
{
return true;
}
else return false;
}
int main()
{
freopen("carpet.in","r",stdin);
freopen("carpet.out","w",stdout);
scanf("%d",&n);
for(int i=1;i<=n;i++)
{
scanf("%d%d%d%d",&s[i].a,&s[i].b,&s[i].g,&s[i].k);
}
scanf("%d%d",&x,&y);
int ans=0;
for(int i=n;i>=1;i--)
{
if(Find(s[i].a,s[i].b,s[i].g,s[i].k,x,y)==true)
{
ans=i;
printf("%d\n",ans);
return 0;
}
}
if(ans==0) printf("-1\n");
return 0;
}