본문 바로가기

PKU & UVa problems/Original problem

PKU 1089. Intervals

Intervals
Time Limit: 1000MS Memory Limit: 10000K
Total Submissions: 2973 Accepted: 1158

Description

There is given the series of n closed intervals [ai; b i], where i=1,2,...,n. The sum of those intervals may berepresented 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

5
5 6
1 4
10 10
6 9
8 10

Sample Output

1 4
5 10

Source

'PKU & UVa problems > Original problem' 카테고리의 다른 글

PKU 1953. World Cup Noise  (0) 2009.01.09
PKU 2845. 01000001  (0) 2009.01.02
PKU 1298. The Hardest Problem Ever  (0) 2008.12.04
PKU 3438. Look and Say  (0) 2008.12.02
PKU 3030. Nasty Hacks  (0) 2008.12.01