CF1921C.Sending Messages

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Stepan is a very busy person. Today he needs to send nn messages at moments m1,m2,mnm_1, m_2, \dots m_n ( mi<mi+1m_i < m_{i + 1} ). Unfortunately, by the moment 00 , his phone only has ff units of charge left. At the moment 00 , the phone is turned on.

The phone loses aa units of charge for each unit of time it is on. Also, at any moment, Stepan can turn off the phone and turn it on later. This action consumes bb units of energy each time. Consider turning on and off to be instantaneous, so you can turn it on at moment xx and send a message at the same moment, and vice versa, send a message at moment xx and turn off the phone at the same moment.

If at any point the charge level drops to 00 (becomes 0\le 0 ), it is impossible to send a message at that moment.

Since all messages are very important to Stepan, he wants to know if he can send all the messages without the possibility of charging the phone.

输入格式

The first line of the input contains a single integer tt ( 1t1041 \le t \le 10^4 ) — the number of test cases. This is followed by the descriptions of the test cases.

The first line of each test case contains four integers nn , ff , aa , and bb ( 1n21051 \le n \le 2 \cdot 10^5 , 1f,a,b1091 \le f, a, b \le 10^9 ) — the number of messages, the initial phone's charge, the charge consumption per unit of time, and the consumption when turned off and on sequentially.

The second line of each test case contains nn integers m1,m2,,mnm_1, m_2, \dots, m_n ( 1mi1091 \le m_i \le 10^9 , mi<mi+1m_i < m_{i + 1} ) — the moments at which messages need to be sent.

It is guaranteed that in a test the sum of nn over all test cases does not exceed 21052 \cdot 10^5 .

输出格式

For each test case, output "YES" if Stepan can send all the messages, and "NO" otherwise.

You can output each letter in any case (lowercase or uppercase). For example, the strings "yEs", "yes", "Yes", and "YES" will be accepted as a positive answer.

输入输出样例

  • 输入#1

    6
    1 3 1 5
    3
    7 21 1 3
    4 6 10 13 17 20 26
    5 10 1 2
    1 2 3 4 5
    1 1000000000 1000000000 1000000000
    1000000000
    3 11 9 6
    6 8 10
    12 621526648 2585904 3566299
    51789 61859 71998 73401 247675 298086 606959 663464 735972 806043 806459 919683

    输出#1

    NO
    YES
    YES
    NO
    NO
    YES

说明/提示

In the first test case of the example, at moment 00 , the phone's charge is 33 . When sending a message at moment 33 without turning it off, (30)1=3(3 - 0) \cdot 1 = 3 units of charge will be spent. In this case, the charge will drop to 00 and Stepan will not be able to send the message. When turning off and on, the phone's charge will decrease by 55 , so it will not be possible to send the message in this way.

In the third test case of the example, at moment 00 , the phone's charge is 1010 . The phone loses 11 unit of charge per unit of time, and when turned off and on, it loses 22 units of charge. To send all messages, the following actions can be taken:

  • Turn off the phone at moment 00 and turn it on at moment 11 , after which 102=810 - 2 = 8 units of charge will remain;
  • send a message at moment 11 ;
  • send a message at moment 22 , after which 8(21)1=78 - (2 - 1) \cdot 1 = 7 units of charge will remain;
  • Turn off the phone at moment 22 and turn it on at moment 33 , after which 72=57 - 2 = 5 units of charge will remain;
  • send a message at moment 33 ;
  • Turn off the phone at moment 33 and turn it on at moment 44 , after which 52=35 - 2 = 3 units of charge will remain;
  • send a message at moment 44 ;
  • Turn off the phone at moment 44 and turn it on at moment 55 , after which 32=13 - 2 = 1 unit of charge will remain;
  • send a message at moment 55 .

The last (sixth) test set of the example may fail if there is an integer overflow in your solution.

首页