#Lutece0271. Sequence

Sequence

Migrated from Lutece 271 Sequence

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

Giving a collection S of points on two dimension plane. (S=S = {(x0,y0),(x1,y1),(x_0,y_0), (x_1,y_1), \cdots}) We define a point is greater than another point when all its coordinate on two axis are both greater than or equel to another one. Namely, pp is greater than qq when xpxqx_p \geq x_q and ypyqy_p \geq y_q. A sequence is a list points < p1,p2,p_1, p_2, \cdots> satisfy that i<j=>pii < j => p_i is greater than pjp_j. You can use the elements in SS to construct sequences, how many sequences needed to cover a SS at least?

Input

The input consists of several test cases. Each test case start with a line containing a number n(0<n1000000)n(0 < n \leq 1000000), the number of points in SS. Then nn lines follows, each line containing two number, xi,yi(0xi,yi<100000)x_i, y_i(0 \leq x_i, y_i < 100000), the position of point ii. The input end with EOF.

Output

You have to print minium number of sequences needed to cover SS in a single line for each case.

Samples

4
1 1
2 2
3 3
4 4

4
1 5
2 6
2 3
3 4
1
2

Resources

厦门大学第四届程序设计竞赛 现场决赛