记录编号 433253 评测结果 AAAAAAAAAA
题目名称 [NOIP 2011]铺地毯 最终得分 100
用户昵称 Gravatar@@@ 是否通过 通过
代码语言 C++ 运行时间 0.000 s
提交时间 2017-08-05 09:13:29 内存使用 0.46 MiB
显示代码纯文本
#include <fstream>
#include "queue"
#include "vector"
using namespace std;
ifstream cin("carpet.in");
ofstream cout("carpet.out");
int n;
int a[10001],b[10001],g[10001],k[10001];
int x,y;
int cyf()
{
	cin >> n;
	for (int i = 1; i <= n; ++i)
	{
		cin >> a[i] >> b[i] >> g[i] >> k[i];
		/* code */
	}
	cin >> x >> y;
	for (int i = n; i >= 1; --i)
	{
		if(a[i]+g[i] >= x && b[i]+k[i] >= y && a[i] <= x && b[i] <= y)
		{
			cout << i;
			return 0;
		}
		/* code */
	}
	cout << -1 << endl;
	cin.close();				
	cout.close();
	return 0;
}
int hhhh = cyf();
int main() {;}