Today an outstanding event is going to happen in the forest — hedgehog Filya will come to his old fried Sonya!
Sonya is an owl and she sleeps during the day and stay awake from minute l1 to minuter1 inclusive. Also, during the minutek she prinks and is unavailable for Filya.
Filya works a lot and he plans to visit Sonya from minute l2 to minuter2 inclusive.
Calculate the number of minutes they will be able to spend together.
The only line of the input contains integers l1,r1,l2,r2 andk (1 ≤ l1, r1, l2, r2, k ≤ 1018,l1 ≤ r1,l2 ≤ r2), providing the segments of time for Sonya and Filya and the moment of time when Sonya prinks.
Print one integer — the number of minutes Sonya and Filya will be able to spend together.
1 10 9 20 1
2
1 100 50 200 75
50
In the first sample, they will be together during minutes 9 and 10.
In the second sample, they will be together from minute 50 to minute 74 and from minute 76 to minute 100.
题意:输出两区间的交集 如果k在此交集内 就去除它。
AC代码:
#include <cstdio>
#include <iostream>
#include <cstring>
#include <algorithm>
#include <cmath>
using namespace std;
int main()
{
long long l1, r1, l2, r2, k;
while(~scanf("%lld%lld%lld%lld%lld",&l1,&r1,&l2,&r2,&k))
{
long long x = l1>l2?l1:l2;
long long y = r1<r2?r1:r2;
if(x > y) cout << 0 << endl;
else
{
if(k >= x && k <= y)
cout << y - x << endl;
else cout << y - x + 1 << endl;
}
}
return 0;
}