【CODEFORCES】 B. Chat Online
2826 단어 수학.codeforces물이 더 건강해요.
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output
Little X and Little Z are good friends. They always chat online. But both of them have schedules.
Little Z has fixed schedule. He always online at any moment of time between a1 and b1, between a2 and b2, ..., between ap and bp (all borders inclusive). But the schedule of Little X is quite strange, it depends on the time when he gets up. If he gets up at time 0, he will be online at any moment of time between c1 and d1, between c2 and d2, ..., between cq and dq (all borders inclusive). But if he gets up at time t, these segments will be shifted by t. They become [ci + t, di + t] (for all i).
If at a moment of time, both Little X and Little Z are online simultaneosly, they can chat online happily. You know that Little X can get up at an integer moment of time between l and r (both borders inclusive). Also you know that Little X wants to get up at the moment of time, that is suitable for chatting with Little Z (they must have at least one common moment of time in schedules). How many integer moments of time from the segment [l, r] suit for that?
Input
The first line contains four space-separated integers p, q, l, r (1 ≤ p, q ≤ 50; 0 ≤ l ≤ r ≤ 1000).
Each of the next p lines contains two space-separated integers ai, bi (0 ≤ ai < bi ≤ 1000). Each of the next q lines contains two space-separated integers cj, dj (0 ≤ cj < dj ≤ 1000).
It's guaranteed that bi < ai + 1 and dj < cj + 1 for all valid i and j.
Output
Output a single integer — the number of moments of time from the segment [l, r] which suit for online conversation.
Sample test(s)
input
1 1 0 4
2 3
0 1
output
3
input
2 3 0 20
15 17
23 26
1 4
7 11
15 17
output
20
이 문제는 비교적 간단한데, 문제를 풀면 나는 게으름을 피운다~~
문제풀이: 이 문제는 수학 문제입니다. a[i]-d[j]부터 b[i]-c[j]까지 이 값이 l~r에 있으면 이 점은 실행할 수 있습니다. 마지막으로 몇 개의 실행 가능한 점이 있는지 판단하면 됩니다.
#include <iostream>
#include <cstdio>
using namespace std;
int p,q,l,r,a[1005],b[1005],c[1005],d[1005],x[1005],ans;
int main()
{
scanf("%d%d%d%d",&p,&q,&l,&r);
for (int i=1;i<=p;i++) scanf("%d%d",&a[i],&b[i]);
for (int i=1;i<=q;i++) scanf("%d%d",&c[i],&d[i]);
//solve
for (int i=1;i<=p;i++)
for (int j=1;j<=q;j++)
if (b[i]>=c[j])
for (int k=a[i]-d[j];k<=b[i]-c[j];k++)if (k>=l && k<=r) x[k]=1;
for (int i=l;i<=r;i++) if (x[i]) ans++;
cout <<ans<<endl;
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Coq에서 증명된 이중 부정 주위의 증명이중 부정 가져오기 이중 부정 해소를 증명할 수 없지만 삼중 부정 해소를 증명할 수 있다 이중 부정 해소의 이중 부정 이중 부정 해소와 배중률 동치 고전 이론을 얻으려면 직관주의 이론에 어느 것을 넣어도 된다는 것이...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.