CF1282A.Temporarily unavailable

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

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

On the axis OxOx at the point x=cx=c the base station of the mobile operator is placed. It is known that the radius of its coverage is rr . Thus, if Polycarp is at a distance less than or equal to rr from the point x=cx=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=ax=a to x=bx=b . His speed — one unit of distance per minute.

输入格式

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

The description of each test case is one line, which contains four integers aa , bb , cc and rr ( 108a,b,c108-10^8 \le a,b,c \le 10^8 , 0r1080 \le r \le 10^8 ) — the coordinates of the starting and ending points of the path, the base station, and its coverage radius, respectively.

Any of the numbers aa , bb and cc 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.

输出格式

Print tt 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.

输入输出样例

  • 输入#1

    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
    

    输出#1

    7
    0
    4
    0
    30
    5
    4
    0
    3
    

说明/提示

The following picture illustrates the first test case.

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

首页