CF9B.Running Student

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

And again a misfortune fell on Poor Student. He is being late for an exam.

Having rushed to a bus stop that is in point (0,0)(0,0) , he got on a minibus and they drove along a straight line, parallel to axis OXOX , in the direction of increasing xx .

Poor Student knows the following:

  • during one run the minibus makes nn stops, the ii -th stop is in point (xi,0)(x_{i},0)
  • coordinates of all the stops are different
  • the minibus drives at a constant speed, equal to vbv_{b}
  • it can be assumed the passengers get on and off the minibus at a bus stop momentarily
  • Student can get off the minibus only at a bus stop
  • Student will have to get off the minibus at a terminal stop, if he does not get off earlier
  • the University, where the exam will be held, is in point (xu,yu)(x_{u},y_{u})
  • Student can run from a bus stop to the University at a constant speed vsv_{s} as long as needed
  • a distance between two points can be calculated according to the following formula:
  • Student is already on the minibus, so, he cannot get off at the first bus stop

Poor Student wants to get to the University as soon as possible. Help him to choose the bus stop, where he should get off. If such bus stops are multiple, choose the bus stop closest to the University.

奔跑的学生

再次,不幸降临在可怜的学生身上。他又迟到考试了。

匆匆赶到位于点 (0, 0) 的一个公交车站,他上了一辆小巴,它们沿着一条与OX轴平行的直线向着增加的x方向行驶。

可怜的学生知道以下事实:

  • 在一次行驶中,小巴会停靠n次,第i次停靠在点 (x_i, 0)。
  • 所有停靠点的坐标都是不同的。
  • 小巴以恒定速度行驶,速度为vbv_b
  • 可以假设乘客在公交车站瞬间上下车。
  • 学生只能在公交车站下车。
  • 如果学生没有提前下车,他将在终点站下车。
  • 考试地点大学位于点 (x_u, y_u)。
  • 学生可以以恒定速度vsv_s从公交车站跑到大学,所需时间为何时。
  • 两点之间的距离可以根据以下公式计算:(x2x1)2+(y2y1)2\sqrt{(x_2-x_1)^2 + (y_2-y_1)^2}

学生已经在小巴上了,所以他不能在第一个公交车站下车。

可怜的学生希望尽快到达大学。帮助他选择应该下车的公交车站。如果有多个这样的公交车站,选择离大学最近的公交车站。

感谢Macw提供翻译

输入格式

The first line contains three integer numbers: 2<=n<=1002<=n<=100 , 1<=vb,vs<=10001<=v_{b},v_{s}<=1000 . The second line contains nn non-negative integers in ascending order: coordinates xix_{i} of the bus stop with index ii . It is guaranteed that x1x_{1} equals to zero, and xn<=105x_{n}<=10^{5} . The third line contains the coordinates of the University, integers xux_{u} and yuy_{u} , not exceeding 10510^{5} in absolute value.

输入包含两行。
第一行输入三个整数,分别为 2n1000,1vb,vs10002 \le n \le 1000, 1 \le v_b, v_s \le 1000
第二行输入 nn 个上升的非负整数,数字 xix_i 表示第二行读入的第 ii 个整数。保证 xn105x_n \le 10^5,且 x1=0x_1 = 0

输出格式

In the only line output the answer to the problem — index of the optimum bus stop.

输出一个整数,代表本道题的答案。

输入输出样例

  • 输入#1

    4 5 2
    0 2 4 6
    4 1
    

    输出#1

    3
  • 输入#2

    2 1 1
    0 100000
    100000 100000
    

    输出#2

    2

说明/提示

As you know, students are a special sort of people, and minibuses usually do not hurry. That's why you should not be surprised, if Student's speed is higher than the speed of the minibus.

请注意,本题空间限制为64MB,是默认空间限制的二分之一。

首页