There are a number of people who will be attending ACM-ICPC World Finals. Each of them may be well versed in a number of topics. Given a list of topics known by each attendee, you must determine the maximum number of topics a 2-person team can know. Also find out how many ways a team can be formed to know that many topics. Lists will be in the form of bit strings, where each string represents an attendee and each position in that string represents a field of knowledge, 1 if its a known field or 0 if not.
For example, given three attendees' data as follows:
10101
11110
00010
These are all possible teams that can be formed:
Members Subjects
(1,2) [1,2,3,4,5]
(1,3) [1,3,4,5]
(2,3) [1,2,3,4]
In this case, the first team will know all 5 subjects. They are the only team that can be created knowing that many subjects.
Input Format
The first line contains two space-separated integers and , where represents the number of attendees and represents the number of topics.
Each of the next lines contains a binary string of length . If the th line's th character is , then the th person knows the thtopic.
Constraints
Output Format
On the first line, print the maximum number of topics a 2-person team can know.
On the second line, print the number of ways to form a 2-person team that knows the maximum number of topics.
Sample Input
4 5
10101
11100
11010
00101
Sample Output
5
2
Explanation
Calculating topics known for all permutations of 2 attendees we get:
The 2 teams (1, 3) and (3, 4) know all 5 topics which is maximal.
두 개의 팀을 엮어서 가장 높은 점수를 낸 팀의 갯수는 몇개이며, 가장 높은 점수는 몇인가? 를 묻는 문제이다.
'HackerRank > Algorithms' 카테고리의 다른 글
Taum and B'day (0) | 2018.08.10 |
---|---|
Equalize the Array (0) | 2018.07.20 |
Jumping on the Clouds (0) | 2018.07.19 |
Repeated String (0) | 2018.07.19 |
Non-Divisible Subset (0) | 2018.07.19 |