ʕ·͡ˑ·ཻ ʕ•̫͡• ʔ•̫͡•ཻʕ•̫͡•ʔ•͓͡•ʔ

题目 - Intervals

There is given the series of n closed intervals [ai; bi], where i=1,2,…,n. The sum of those intervals may be represented as a sum of closed pairwise non−intersecting intervals. The task is to find such representation with the minimal number of intervals. The intervals of this representation should be written in the output file in acceding order. We say that the intervals [a; b] and [c; d] are in ascending order if, and only if a <= b < c <= d.
Task
Write a program which:
reads from the std input the description of the series of intervals,
computes pairwise non−intersecting intervals satisfying the conditions given above,
writes the computed intervals in ascending order into std output

Input

In the first line of input there is one integer n, 3 <= n <= 50000. This is the number of intervals. In the (i+1)−st line, 1 <= i <= n, there is a description of the interval [ai; bi] in the form of two integers ai and bi separated by a single space, which are respectively the beginning and the end of the interval,1 <= ai <= bi <= 1000000.

Output

The output should contain descriptions of all computed pairwise non−intersecting intervals. In each line should be written a description of one interval. It should be composed of two integers, separated by a single space, the beginning and the end of the interval respectively. The intervals should be written into the output in ascending order.

Sample Input

1
2
3
4
5
6
5
5 6
1 4
10 10
6 9
8 10

Sample Output

1
2
1 4
5 10

题意:

​ 区间覆盖,给很多线段,合并线段,使合并后的间隔最小。

解题:

​ 写这个题目参考了今天暑假不AC

AC代码:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include<iostream>
#include<iomanip>
#include<queue>
#include<cmath>
#include<string.h>
#include<algorithm>

using namespace std;

struct node{
int start, end;
}a[50005], b[5005];
//这里
bool cmp(node a, node b) {
return a.start < b.start;
}

int main() {
int n;
while(~scanf("%d",&n)) {
for(int i = 0; i < n; i++) {
scanf("%d %d", &a[i].start, &a[i].end);
}
sort(a, a + n, cmp);
node last = a[0];
for(int i = 1; i <= n-1; i++) {
if(a[i].start <= last.end) {
//之前一直在这里wa,需要加一个判断条件(因为前一个线段可能包含后一个线段)
if(a[i].end > last.end)
last.end = a[i].end;
}
else if(a[i].start > last.end) {
cout<<last.start<<" "<<last.end<<endl;
last = a[i];
}
}
cout<<last.start<<" "<<last.end<<endl;
}
return 0;
}