302245: CF432A. Choosing Teams
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Choosing Teams
题意翻译
总共有n个人,每个人最多参加5场比赛,现在给出每个人已经参加过的比赛次数,要组尽可能多的队伍去继续参加比赛,每支队伍3个人,要求组成的队伍至少再参加k场比赛,问最多可以组几个队 感谢@csath99 提供的翻译题目描述
The Saratov State University Olympiad Programmers Training Center (SSU OPTC) has $ n $ students. For each student you know the number of times he/she has participated in the ACM ICPC world programming championship. According to the ACM ICPC rules, each person can participate in the world championship at most 5 times. The head of the SSU OPTC is recently gathering teams to participate in the world championship. Each team must consist of exactly three people, at that, any person cannot be a member of two or more teams. What maximum number of teams can the head make if he wants each team to participate in the world championship with the same members at least $ k $ times?输入输出格式
输入格式
The first line contains two integers, $ n $ and $ k $ $ (1<=n<=2000; 1<=k<=5) $ . The next line contains $ n $ integers: $ y_{1},y_{2},...,y_{n} $ $ (0<=y_{i}<=5) $ , where $ y_{i} $ shows the number of times the $ i $ -th person participated in the ACM ICPC world championship.
输出格式
Print a single number — the answer to the problem.
输入输出样例
输入样例 #1
5 2
0 4 5 1 0
输出样例 #1
1
输入样例 #2
6 4
0 1 2 3 4 5
输出样例 #2
0
输入样例 #3
6 5
0 0 0 0 0 0
输出样例 #3
2