poj 1089 Intervals

来源:互联网 发布:工商联优化发展环境 编辑:程序博客网 时间:2024/06/05 09:33

Intervals
Time Limit: 1000MS Memory Limit: 10000KTotal Submissions: 7362 Accepted: 2928

Description

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

55 61 410 106 98 10

Sample Output

1 45 10
贪心水题,按左边间从小到大排序,若左边界相等,则右边界大小则无关。这一点大家可以想想,举个例子和容易明白的。

#include<stdio.h>#include<string.h>#include<stdlib.h>#include"algorithm"using namespace std;#define N 50005struct node{int c,d;}f[N];bool cmp(node a,node b){    return a.c<b.c;}int Max(int a,int b){return a>b?a:b;}int main(){    int n,i;while(scanf("%d",&n)!=EOF){for(i=0;i<n;i++)scanf("%d%d",&f[i].c,&f[i].d);sort(f,f+n,cmp);int a=f[0].c,b=f[0].d;for(i=1;i<n;i++){if(f[i].c>b)     //若区间不交叉,输出上一个区间{printf("%d %d\n",a,b);a=f[i].c;b=f[i].d;}elseb=Max(b,f[i].d);//否则,判断当前右端是否大于上一区间的右端}printf("%d %d\n",a,b);}    return 0;}



0 0
原创粉丝点击