CCC '23 J3 - Special Event

View as PDF

Submit solution


Points: 5 (partial)
Time limit: 3.0s
Memory limit: 1G

Problem type
Canadian Computing Competition: 2023 Stage 1, Junior #3

You are trying to schedule a special event on one of five possible days.

Your job is to determine on which day you should schedule the event, so that the largest number of interested people are able to attend.

Input Specification

The first line of input will contain a positive integer N, representing the number of people interested in attending your event. The next N lines will each contain one person's availability using one character for each of Day 1, Day 2, Day 3, Day 4, and Day 5 (in that order). The character Y means the person is able to attend and a period (.) means the person is not able to attend.

The following table shows how the available 15 marks are distributed:

Marks Description
6 There will be exactly one day on which every person will be able to attend.
6 There will be exactly one day on which the largest number of people will be able to attend.
3 There might be more than one day on which the largest number of people will be able to attend.

Output Specification

The output will consist of one line listing the day number(s) on which the largest number of interested people are able to attend.

If there is more than one day on which the largest number of people are able to attend, output all of these day numbers in increasing order and separated by commas (without spaces).

Sample Input 1

3
YY.Y.
...Y.
.YYY.

Sample Output 1

4

Explanation for Sample 1

All three people are able to attend on Day 4, and they are not all available on any other day.

Sample Input 2

5
YY..Y
.YY.Y
.Y.Y.
.YY.Y
Y...Y

Sample Output 2

2,5

Explanation for Sample 2

There is no day on which all five people are able to attend. Four people are able to attend on both Day 2 and Day 5.


Comments


  • 1
    teddycitrus  commented on Feb. 22, 2024, 7:15 p.m.

    kaizenecks a legend for copying d's code word for word 😭😭


  • 0
    Sickkle  commented on Feb. 20, 2024, 2:02 a.m.

    what r the marks in the description for?


    • 0
      AmIJohnLi  commented on Feb. 20, 2024, 2:55 a.m.

      How your question on the ccc will be marked


      • 0
        HisMonDon  commented on Feb. 21, 2024, 2:21 a.m.

        man it literally gives the mark distributions above