我必须总结一下:
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.
现在,我不得不在奥(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
", 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)。
任何想法? 谢谢。