A. Temporarily unavailable----思维/水

Polycarp lives on the coordinate axis Ox and travels from the point x=a to x=b. It moves uniformly rectilinearly at a speed of one unit of distance per minute.

On the axis Ox at the point x=c the base station of the mobile operator is placed. It is known that the radius of its coverage is r. Thus, if Polycarp is at a distance less than or equal to r from the point x=c, then he is in the network coverage area, otherwise — no. The base station can be located both on the route of Polycarp and outside it.

Print the time in minutes during which Polycarp will not be in the coverage area of the network, with a rectilinear uniform movement from x=a to x=b. His speed — one unit of distance per minute.

Input
The first line contains a positive integer t (1≤t≤1000) — the number of test cases. In the following lines are written t test cases.

The description of each test case is one line, which contains four integers a, b, c and r (−108≤a,b,c≤108, 0≤r≤108) — the coordinates of the starting and ending points of the path, the base station, and its coverage radius, respectively.

Any of the numbers a, b and c can be equal (either any pair or all three numbers). The base station can be located both on the route of Polycarp and outside it.

Output
Print t numbers — answers to given test cases in the order they are written in the test. Each answer is an integer — the number of minutes during which Polycarp will be unavailable during his movement.

Example
inputCopy
9
1 10 7 1
3 3 3 0
8 2 10 4
8 2 10 100
-10 20 -17 2
-3 2 2 0
-3 1 2 0
2 3 2 3
-1 3 -2 2
outputCopy
7
0
4
0
30
5
4
0
3
Note
The following picture illustrates the first test case.

Polycarp goes from 1 to 10. The yellow area shows the coverage area of the station with a radius of coverage of 1, which is located at the point of 7. The green area shows a part of the path when Polycarp is out of coverage area.

解析:枚举六种情况就行

#include<bits/stdc++.h>
using namespace std;
int t,a,b,c,ri;
int main()
{
	cin>>t;
	while(t--)
	{
		cin>>a>>b>>c>>ri;
			int l=c-ri;
			int r=c+ri;
			if(a>b) swap(a,b);
			if(l<=a&&r>=b) puts("0");
			else if(l>a&&r<b) cout<<((l-a)+(b-r))<<endl;
			else if(l>a&&l>b) cout<<(b-a)<<endl;
			else if(a>r&&b>r) cout<<(b-a)<<endl;
			else if(a<l) cout<<(l-a)<<endl;
			else cout<<(b-r)<<endl; 
	
 } 
}
发布了289 篇原创文章 · 获赞 6 · 访问量 4008

猜你喜欢

转载自blog.csdn.net/qq_43690454/article/details/104059742