A13028 | Divide The Students
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
A group of students has recently been admitted to the Faculty of Computer Sciences at the Berland State University. Now the programming teacher wants to divide them into three subgroups for practice sessions.
The teacher knows that a lot of programmers argue which language is the best. The teacher doesn't want to hear any arguments in the subgroups, so she wants to divide the students into three subgroups so that no pair of students belonging to the same subgroup want to argue.
To perform this division, the teacher asked each student which programming language he likes. There are $a$ students who answered that they enjoy Assembler, $b$ students stated that their favourite language is Basic, and $c$ remaining students claimed that C++ is the best programming language — and there was a large argument between Assembler fans and C++ fans.
Now, knowing that Assembler programmers and C++ programmers can start an argument every minute, the teacher wants to divide the students into three subgroups so that every student belongs to exactly one subgroup, and there is no subgroup that contains at least one Assembler fan and at least one C++ fan. Since teaching a lot of students can be difficult, the teacher wants the size of the largest subgroup to be minimum possible.
Please help the teacher to calculate the minimum possible size of the largest subgroup!
The teacher knows that a lot of programmers argue which language is the best. The teacher doesn't want to hear any arguments in the subgroups, so she wants to divide the students into three subgroups so that no pair of students belonging to the same subgroup want to argue.
To perform this division, the teacher asked each student which programming language he likes. There are $a$ students who answered that they enjoy Assembler, $b$ students stated that their favourite language is Basic, and $c$ remaining students claimed that C++ is the best programming language — and there was a large argument between Assembler fans and C++ fans.
Now, knowing that Assembler programmers and C++ programmers can start an argument every minute, the teacher wants to divide the students into three subgroups so that every student belongs to exactly one subgroup, and there is no subgroup that contains at least one Assembler fan and at least one C++ fan. Since teaching a lot of students can be difficult, the teacher wants the size of the largest subgroup to be minimum possible.
Please help the teacher to calculate the minimum possible size of the largest subgroup!
输入格式
The first line contains one integer $t$ ( $1 \le t \le 5$ ) — the number of test cases in the input. Then test cases follow.
Each test case consists of one line containing three integers $a$ , $b$ and $c$ ( $1 \le a, b, c \le 1000$ ) — the number of Assembler fans, Basic fans and C++ fans, respectively.
Each test case consists of one line containing three integers $a$ , $b$ and $c$ ( $1 \le a, b, c \le 1000$ ) — the number of Assembler fans, Basic fans and C++ fans, respectively.
输出格式
For each test case print one integer — the minimum size of the largest subgroup if the students are divided in such a way that there is no subgroup that contains at least one Assembler fan and at least one C++ fan simultaneously.
输入输出样例
输入 #1
5 3 5 7 4 8 4 13 10 13 1000 1000 1000 13 22 7
输出 #1
5 6 13 1000 14
输入 #2
5 1 3 4 1000 1000 1 4 1 2 325 226 999 939 861 505
输出 #2
3 667 3 517 769
Explanation of the answers for the example $1$ :
1. The first subgroup contains $3$ Assembler fans and $2$ Basic fans, the second subgroup — $5$ C++ fans, the third subgroup — $2$ C++ fans and $3$ Basic fans.
2. The first subgroup contains $4$ Assembler fans, the second subgroup — $6$ Basic fans, the third subgroup — $2$ Basic fans and $4$ C++ fans.
3. The first subgroup contains all Assembler fans, the second subgroup — all Basic fans, the third subgroup — all C++ fans.
4. The first subgroup contains all Assembler fans, the second subgroup — all Basic fans, the third subgroup — all C++ fans.
5. The first subgroup contains $12$ Assembler fans and $2$ Basic fans, the second subgroup — $1$ Assembler fan and $13$ Basic fans, the third subgroup — $7$ Basic fans and $7$ C++ fans.
1. The first subgroup contains $3$ Assembler fans and $2$ Basic fans, the second subgroup — $5$ C++ fans, the third subgroup — $2$ C++ fans and $3$ Basic fans.
2. The first subgroup contains $4$ Assembler fans, the second subgroup — $6$ Basic fans, the third subgroup — $2$ Basic fans and $4$ C++ fans.
3. The first subgroup contains all Assembler fans, the second subgroup — all Basic fans, the third subgroup — all C++ fans.
4. The first subgroup contains all Assembler fans, the second subgroup — all Basic fans, the third subgroup — all C++ fans.
5. The first subgroup contains $12$ Assembler fans and $2$ Basic fans, the second subgroup — $1$ Assembler fan and $13$ Basic fans, the third subgroup — $7$ Basic fans and $7$ C++ fans.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted