Preparando MOJI

Interval Coloring

2000ms 262144K

Description:

Aryo has got a lot of intervals for his 2418th birthday. He is really excited and decided to color all these intervals with some colors. He has a simple rule for himself. He calls a coloring nice if there exists no three intervals a, b and c such that the following conditions are satisfied simultaneously:

  • a, b and c are colored with the same color,
  • ,
  • ,
  • .

Moreover he found out that for every intervals i and j, there is at least one point in i which isn't in j.

Given some set of intervals. You have to find the minimum number k, such that Aryo can find a nice coloring with k colors.

Input:

The first line contains a single integer n (1 ≤ n ≤ 103), number of intervals.

The following n lines contain a interval description each. Each interval is described by two numbers si, ei which are the start and end points of it ( - 105 < si, ei < 105, si ≤ ei). See samples for clarity. A square bracket stands for including of the corresponding endpoint, while a round bracket stands for excluding.

Output:

Write a single integer k — the minimum number of colors needed for a nice coloring.

Sample Input:

2
[1,2)
(3,4]

Sample Output:

1

Sample Input:

3
[1,3]
[2,6]
(5,7)

Sample Output:

2

Informação

Codeforces

Provedor Codeforces

Código CF100J

Tags

*specialgreedymath

Submetido 0

BOUA! 0

Taxa de BOUA's 0%

Datas 09/05/2023 08:32:09

Relacionados

Nada ainda