CF1055C.Lucky Days
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Bob and Alice are often participating in various programming competitions. Like many competitive programmers, Alice and Bob have good and bad days. They noticed, that their lucky and unlucky days are repeating with some period. For example, for Alice days [la;ra] are lucky, then there are some unlucky days: [ra+1;la+ta−1] , and then there are lucky days again: [la+ta;ra+ta] and so on. In other words, the day is lucky for Alice if it lies in the segment [la+kta;ra+kta] for some non-negative integer k .
The Bob's lucky day have similar structure, however the parameters of his sequence are different: lb , rb , tb . So a day is a lucky for Bob if it lies in a segment [lb+ktb;rb+ktb] , for some non-negative integer k .
Alice and Bob want to participate in team competitions together and so they want to find out what is the largest possible number of consecutive days, which are lucky for both Alice and Bob.
输入格式
The first line contains three integers la , ra , ta ( 0≤la≤ra≤ta−1,2≤ta≤109 ) and describes Alice's lucky days.
The second line contains three integers lb , rb , tb ( 0≤lb≤rb≤tb−1,2≤tb≤109 ) and describes Bob's lucky days.
It is guaranteed that both Alice and Bob have some unlucky days.
输出格式
Print one integer: the maximum number of days in the row that are lucky for both Alice and Bob.
输入输出样例
输入#1
0 2 5 1 3 5
输出#1
2
输入#2
0 1 3 2 3 6
输出#2
1
说明/提示
The graphs below correspond to the two sample tests and show the lucky and unlucky days of Alice and Bob as well as the possible solutions for these tests.