#P3661. [USACO17FEB] Why Did the Cow Cross the Road I S
[USACO17FEB] Why Did the Cow Cross the Road I S
题目描述
Farmer John's cows are trying to learn to cross the road effectively. Remembering the old "why did the chicken cross the road?" joke, they figure the chickens must be experts on crossing the road, and go off in search of chickens to help them.
As it turns out, chickens are very busy creatures and have limited time to help the cows. There are chickens on the farm (), conveniently numbered , and each chicken is only willing to help a cow at precisely time . The cows, never in a hurry, have more flexibility in their schedules. There are cows on the farm (), conveniently numbered , where cow is able to cross the road between time and time . Figuring the "buddy system" is the best way to proceed, each cow would ideally like to find a chicken to help her cross the road; in order for their schedules to be compatible, and must satisfy .
If each cow can be paired with at most one chicken and each chicken with at most one cow, please help compute the maximum number of cow-chicken pairs that can be constructed.
输入格式
The first line of input contains and . The next lines contain , and the next lines contain and () for . The 's, 's, and 's are all non-negative integers (not necessarily distinct) of size at most 1,000,000,000
输出格式
Please compute the maximum possible number of cow-chicken pairs.
题目大意
题目描述
Farmer John 的奶牛们正在学习如何有效地过马路。回想起古老的“鸡为什么要过马路?”笑话,他们认为鸡一定是过马路的专家,于是去寻找鸡来帮助它们。
事实上,鸡是非常忙碌的生物,它们只有有限的时间来帮助奶牛。农场上有 只鸡(),方便地用编号 标识,每只鸡 只愿意在确切的时间 帮助一头奶牛。奶牛们从不着急,它们的日程安排更加灵活。农场上有 头奶牛(),方便地用编号 标识,其中奶牛 能够在时间 到时间 之间过马路。考虑到“伙伴系统”是最好的方式,每头奶牛 理想情况下希望找到一只鸡 来帮助她过马路;为了使它们的日程安排兼容, 和 必须满足 。
如果每头奶牛最多只能与一只鸡配对,每只鸡也最多只能与一头奶牛配对,请计算可以构建的最大奶牛-鸡配对数。
输入格式
输入的第一行包含 和 。接下来的 行包含 ,接下来的 行包含 和 (),其中 。、 和 都是不超过 1,000,000,000 的非负整数(不一定互不相同)。
输出格式
请计算可能的奶牛-鸡配对的最大数量。
5 4
7
8
6
2
9
2 5
4 9
0 3
8 13
3