Preparando MOJI

Combinatorics Homework

2000ms 262144K

Description:

You are given four integer values $$$a$$$, $$$b$$$, $$$c$$$ and $$$m$$$.

Check if there exists a string that contains:

  • $$$a$$$ letters 'A';
  • $$$b$$$ letters 'B';
  • $$$c$$$ letters 'C';
  • no other letters;
  • exactly $$$m$$$ pairs of adjacent equal letters (exactly $$$m$$$ such positions $$$i$$$ that the $$$i$$$-th letter is equal to the $$$(i+1)$$$-th one).

Input:

The first line contains a single integer $$$t$$$ ($$$1 \le t \le 10^4$$$) — the number of testcases.

Each of the next $$$t$$$ lines contains the description of the testcase — four integers $$$a$$$, $$$b$$$, $$$c$$$ and $$$m$$$ ($$$1 \le a, b, c \le 10^8$$$; $$$0 \le m \le 10^8$$$).

Output:

For each testcase print "YES" if there exists a string that satisfies all the requirements. Print "NO" if there are no such strings.

You may print every letter in any case you want (so, for example, the strings yEs, yes, Yes and YES will all be recognized as positive answer).

Sample Input:

3
2 2 1 0
1 1 1 1
1 2 3 2

Sample Output:

YES
NO
YES

Note:

In the first testcase strings "ABCAB" or "BCABA" satisfy the requirements. There exist other possible strings.

In the second testcase there's no way to put adjacent equal letters if there's no letter that appears at least twice.

In the third testcase string "CABBCC" satisfies the requirements. There exist other possible strings.

Informação

Codeforces

Provedor Codeforces

Código CF1574B

Tags

combinatoricsgreedymath

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 10:17:44

Relacionados

Nada ainda