A13048 | Yet Another Dividing into Teams
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You are a coach of a group consisting of $n$ students. The $i$ -th student has programming skill $a_i$ . All students have distinct programming skills. You want to divide them into teams in such a way that:
- No two students $i$ and $j$ such that $|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 $1$ );
- the number of teams is the minimum possible.
You have to answer $q$ independent queries.
- No two students $i$ and $j$ such that $|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 $1$ );
- the number of teams is the minimum possible.
You have to answer $q$ independent queries.
输入格式
The first line of the input contains one integer $q$ ( $1 \le q \le 100$ ) — the number of queries. Then $q$ queries follow.
The first line of the query contains one integer $n$ ( $1 \le n \le 100$ ) — the number of students in the query. The second line of the query contains $n$ integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 100$ , all $a_i$ are distinct), where $a_i$ is the programming skill of the $i$ -th student.
The first line of the query contains one integer $n$ ( $1 \le n \le 100$ ) — the number of students in the query. The second line of the query contains $n$ integers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 100$ , all $a_i$ are distinct), where $a_i$ is the programming skill of the $i$ -th student.
输出格式
For each query, print the answer on it — the minimum number of teams you can form if no two students $i$ and $j$ such that $|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 $1$ )
输入输出样例
输入 #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=4$ students with the skills $a=[2, 10, 1, 20]$ . There is only one restriction here: the $1$ -st and the $3$ -th students can't be in the same team (because of $|a_1 - a_3|=|2-1|=1$ ). It is possible to divide them into $2$ teams: for example, students $1$ , $2$ and $4$ are in the first team and the student $3$ in the second team.
In the second query of the example, there are $n=2$ students with the skills $a=[3, 6]$ . It is possible to compose just a single team containing both students.
In the second query of the example, there are $n=2$ students with the skills $a=[3, 6]$ . It is possible to compose just a single team containing both students.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted