我必须总结这样的间隔:
1..6
2..4
The result is 1..6, so there are 6 numbers in the end.
这是另一个例子:
4..6
8..10
14..16
4, 5, 6, 8, 9, 10, 14, 15, 16, the size is 9.
现在,我必须在 O(N) 中执行此操作。这是我很快想到的使用 STL 的一种不太好的方法:
#include <set>
#include <stdio.h>
using namespace std;
int main() {
int n;
scanf("%d", &n);
set<int> numbers;
int a, b;
for (int i = 0; i < n; i++) {
scanf("%d %d", &a, &b);
for (int u = a; u <= b; u++) {
numbers.insert(u);
}
}
printf("%d\n", numbers.size());
return 0;
}
知道如何在 O(N) 中完成此操作吗?我知道我必须先对其进行排序,但我可以使用我刚刚制作的这个:
bool compare(const vector<int> first, const vector<int> second) {
if (first[0] == second[0]) return first[1] < second[1];
return first[0] < second[0];
}
sort(intervals.begin(), intervals.end(), compare);
所以它是O(log N + N)。
有任何想法吗?谢谢你。