CF1249A.Yet Another Dividing into Teams

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

You are a coach of a group consisting of nn students. The ii -th student has programming skill aia_i . All students have distinct programming skills. You want to divide them into teams in such a way that:

  • No two students ii and jj such that aiaj=1|a_i - a_j| = 1 belong to the same team (i.e. skills of each pair of students in the same team have the difference strictly greater than 11 );
  • the number of teams is the minimum possible.

You have to answer qq independent queries.

输入格式

The first line of the input contains one integer qq ( 1q1001 \le q \le 100 ) — the number of queries. Then qq queries follow.

The first line of the query contains one integer nn ( 1n1001 \le n \le 100 ) — the number of students in the query. The second line of the query contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 1ai1001 \le a_i \le 100 , all aia_i are distinct), where aia_i is the programming skill of the ii -th student.

输出格式

For each query, print the answer on it — the minimum number of teams you can form if no two students ii and jj such that aiaj=1|a_i - a_j| = 1 may belong to the same team (i.e. skills of each pair of students in the same team has the difference strictly greater than 11 )

输入输出样例

  • 输入#1

    4
    4
    2 10 1 20
    2
    3 6
    5
    2 3 4 99 100
    1
    42
    

    输出#1

    2
    1
    2
    1
    

说明/提示

In the first query of the example, there are n=4n=4 students with the skills a=[2,10,1,20]a=[2, 10, 1, 20] . There is only one restriction here: the 11 -st and the 33 -th students can't be in the same team (because of a1a3=21=1|a_1 - a_3|=|2-1|=1 ). It is possible to divide them into 22 teams: for example, students 11 , 22 and 44 are in the first team and the student 33 in the second team.

In the second query of the example, there are n=2n=2 students with the skills a=[3,6]a=[3, 6] . It is possible to compose just a single team containing both students.

首页