Algorithm
problem Link : https://www.codechef.com/problems/JERRYCHASE
Problem
In a classic chase, Tom is running after Jerry as Jerry has eaten Tom's favourite food.
Jerry is running at a speed of metres per second while Tom is chasing him at a speed of metres per second. Determine whether Tom will be able to catch Jerry.
Note that initially Jerry is not at the same position as Tom.
Input Format
- The first line of input will contain a single integer , denoting the number of test cases.
- Each test case consists of two space-separated integers and — the speeds of Jerry and Tom respectively.
Output Format
For each test case, output on a new line, YES
, if Tom will be able to catch Jerry. Otherwise, output NO
.
You can print each character in uppercase or lowercase. For example NO
, no
, No
, and nO
are all considered the same.
Constraints
Sample 1:
4 2 3 4 1 1 1 3 5
YES NO NO YES
Explanation:
Test case : Jerry is running at the speed of metres per second while Tom is chasing him at the speed of metres per second. Since Jerry's speed is less than Tom's, Tom will eventually catch Jerry.
Test case : Jerry is running at the speed of metres per second while Tom is chasing him at the speed of metres per second. Since Jerry's speed is higher than Tom's, Tom will never be able to catch Jerry.
Test case : Jerry is running at the speed of metre per second while Tom is chasing him at the speed of metre per second. Since Jerry's speed is same as that of Tom's and both of them are not at the same position, Tom will never be able to catch Jerry.
Test case : Jerry is running at the speed of metres per second while Tom is chasing him at the speed of metres per second. Since Jerry's speed is less than Tom's, Tom will eventually catch Jerry.
Code Examples
#1 Code Example with C Programming
Code -
C Programming
#include<stdio.h>
int main()
{
int t;
scanf("%d",&t);
while(t--)
{
int x,y;
scanf("%d %d",&x,&y);
if(y>x) printf("Yes\n");
else printf("No\n");
}
}
Copy The Code &
Try With Live Editor
Input
1000 100
1000 1000
80 1
400 30
Output
100000
890
6700
Demonstration
CodeChef solution JERRYCHASE - Tom and Jerry Chase Codechef solution in C,C++