B - rng_10s Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 600600

問題文

コンビニエンスストアのりんごマートでは,りんごジュースを販売しています。

りんごマートはある日の朝に開店し,その時にはジュースの在庫が AA 本ありました。 すぬけ君は毎日昼にりんごマートでジュースを BB 本買います。 りんごマートでは毎日夜にジュースの在庫を確認し,CC 本以下だった場合,次の日の朝までに DD 本在庫を追加します。

すぬけ君がジュースを永遠に買い続けられるかを判定して下さい。 つまり,ジュースを買おうとした時,必ず在庫が BB 本以上あるかどうかを判定して下さい。 すぬけ君以外がジュースを買うことはありません。

また,今回の問題では入力ケースは TT 個のクエリからなります。

制約

  • 1T3001 \leq T \leq 300
  • 1A,B,C,D10181 \leq A, B, C, D \leq 10^{18}
  • 入力される値は全て整数である

入力

入力は以下の形式で標準入力から与えられる。

TT
A1A_1 B1B_1 C1C_1 D1D_1
A2A_2 B2B_2 C2C_2 D2D_2
::
ATA_T BTB_T CTC_T DTD_T

ii 個目のクエリにおいては,A=Ai,B=Bi,C=Ci,D=DiA = A_i, B = B_i, C = C_i, D = D_i である。

出力

TT 行出力せよ。ii 行目には,ii 個目のクエリですぬけ君が永遠にりんごジュースを買い続けられる場合 Yes,そうでない場合 No と出力せよ。


入力例 1Copy

Copy
14
9 7 5 9
9 7 6 9
14 10 7 12
14 10 8 12
14 10 9 12
14 10 7 11
14 10 8 11
14 10 9 11
9 10 5 10
10 10 5 10
11 10 5 10
16 10 5 10
1000000000000000000 17 14 999999999999999985
1000000000000000000 17 15 999999999999999985

出力例 1Copy

Copy
No
Yes
No
Yes
Yes
No
No
Yes
No
Yes
Yes
No
No
Yes

11 個目のクエリでは在庫の個数は以下のように変動します。

99 22 1111 44 1313 66 66 x

22 個目のクエリでは在庫の個数は以下のように変動します。

99 22 1111 44 1313 66 1515 88 88 11 1010 33 1212 55 1414 77 77 00 99 22 1111

と続いていき,このまま永遠に購入し続けられます。


入力例 2Copy

Copy
24
1 2 3 4
1 2 4 3
1 3 2 4
1 3 4 2
1 4 2 3
1 4 3 2
2 1 3 4
2 1 4 3
2 3 1 4
2 3 4 1
2 4 1 3
2 4 3 1
3 1 2 4
3 1 4 2
3 2 1 4
3 2 4 1
3 4 1 2
3 4 2 1
4 1 2 3
4 1 3 2
4 2 1 3
4 2 3 1
4 3 1 2
4 3 2 1

出力例 2Copy

Copy
No
No
No
No
No
No
Yes
Yes
No
No
No
No
Yes
Yes
Yes
No
No
No
Yes
Yes
Yes
No
No
No

Score : 600600 points

Problem Statement

Ringo Mart, a convenience store, sells apple juice.

On the opening day of Ringo Mart, there were AA cans of juice in stock in the morning. Snuke buys BB cans of juice here every day in the daytime. Then, the manager checks the number of cans of juice remaining in stock every night. If there are CC or less cans, DD new cans will be added to the stock by the next morning.

Determine if Snuke can buy juice indefinitely, that is, there is always BB or more cans of juice in stock when he attempts to buy them. Nobody besides Snuke buy juice at this store.

Note that each test case in this problem consists of TT queries.

Constraints

  • 1T3001 \leq T \leq 300
  • 1A,B,C,D10181 \leq A, B, C, D \leq 10^{18}
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

TT
A1A_1 B1B_1 C1C_1 D1D_1
A2A_2 B2B_2 C2C_2 D2D_2
::
ATA_T BTB_T CTC_T DTD_T

In the ii-th query, A=Ai,B=Bi,C=Ci,D=DiA = A_i, B = B_i, C = C_i, D = D_i.

Output

Print TT lines. The ii-th line should contain Yes if Snuke can buy apple juice indefinitely in the ii-th query; No otherwise.


Sample Input 1Copy

Copy
14
9 7 5 9
9 7 6 9
14 10 7 12
14 10 8 12
14 10 9 12
14 10 7 11
14 10 8 11
14 10 9 11
9 10 5 10
10 10 5 10
11 10 5 10
16 10 5 10
1000000000000000000 17 14 999999999999999985
1000000000000000000 17 15 999999999999999985

Sample Output 1Copy

Copy
No
Yes
No
Yes
Yes
No
No
Yes
No
Yes
Yes
No
No
Yes

In the first query, the number of cans of juice in stock changes as follows: (D represents daytime and N represents night.)

99 D 22 N 1111 D 44 N 1313 D 66 N 66 D x

In the second query, the number of cans of juice in stock changes as follows:

99 D 22 N 1111 D 44 N 1313 D 66 N 1515 D 88 N 88 D 11 N 1010 D 33 N 1212 D 55 N 1414 D 77 N 77 D 00 N 99 D 22 N 1111 D

and so on, thus Snuke can buy juice indefinitely.


Sample Input 2Copy

Copy
24
1 2 3 4
1 2 4 3
1 3 2 4
1 3 4 2
1 4 2 3
1 4 3 2
2 1 3 4
2 1 4 3
2 3 1 4
2 3 4 1
2 4 1 3
2 4 3 1
3 1 2 4
3 1 4 2
3 2 1 4
3 2 4 1
3 4 1 2
3 4 2 1
4 1 2 3
4 1 3 2
4 2 1 3
4 2 3 1
4 3 1 2
4 3 2 1

Sample Output 2Copy

Copy
No
No
No
No
No
No
Yes
Yes
No
No
No
No
Yes
Yes
Yes
No
No
No
Yes
Yes
Yes
No
No
No


2025-04-04 (Fri)
00:59:19 +00:00