CF BUDDY
← Problems·

1288A · Deadline

1100 · binary search, brute force, math

Problem: Adilbek was assigned to a special project. For Adilbek it means that he has nn days to run a special program and provide its results. But there is a problem: the program needs to run for dd days to calculate the results.

Fortunately, Adilbek can optimize the program. If he spends xx (xx is a non-negative integer) days optimizing the program, he will make the program run in dx+1\left\lceil \frac{d}{x + 1} \right\rceil days (a\left\lceil a \right\rceil is the ceiling function: 2.4=3\left\lceil 2.4 \right\rceil = 3, 2=2\left\lceil 2 \right\rceil = 2). The program cannot be run and optimized simultaneously, so the total number of days he will spend is equal to x+dx+1x + \left\lceil \frac{d}{x + 1} \right\rceil.

Will Adilbek be able to provide the generated results in no more than nn days?

Input Format: The first line contains a single integer TT (1T501 \le T \le 50) — the number of test cases.

The next TT lines contain test cases – one per line. Each line contains two integers nn and dd (1n1091 \le n \le 10^9, 1d1091 \le d \le 10^9) — the number of days before the deadline and the number of days the program runs.

Output Format: Print TT answers — one per test case. For each test case print YES (case insensitive) if Adilbek can fit in nn days or NO (case insensitive) otherwise.

Note: In the first test case, Adilbek decides not to optimize the program at all, since dnd \le n.

In the second test case, Adilbek can spend 11 day optimizing the program and it will run 52=3\left\lceil \frac{5}{2} \right\rceil = 3 days. In total, he will spend 44 days and will fit in the limit.

In the third test case, it's impossible to fit in the limit. For example, if Adilbek will optimize the program 22 days, it'll still work 112+1=4\left\lceil \frac{11}{2+1} \right\rceil = 4 days.

Sample Cases

Case 1

Input

3
1 1
4 5
5 11

Output

YES
YES
NO

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback