比赛 NOIP模拟赛by mzx Day1 评测结果 WWWWWWWWWW
题目名称 为爱追寻 最终得分 0
用户昵称 1azyReaper 运行时间 3.843 s
代码语言 C++ 内存使用 0.25 MiB
提交时间 2016-10-19 19:06:34
显示代码纯文本
#include <fstream>
#include <iostream>
#include <algorithm>
#include <cstdio>
#include <cstring>
using namespace std;
ifstream fin("loverfinding.in");
ofstream fout("loverfinding.out");
int n,x0,y0,xt,yt;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv) 
{
	int x,y;
	fin>>n>>x0>>y0>>xt>>yt;
	if(x0==xt&&y0==yt)
	{
		fout<<"0"<<endl;
		return 0;
	}
	for(int i=1;i<=n;i++)
	{
		fin>>x>>y;
		x0+=x,y0+=y;
		if(x0==xt&&y0==yt)
		{
			fout<<i<<endl;
			return 0;
		}
	}
	fin.close();
	fout.close();
	return 0;
}