CCC '24 S1 - Hat Circle

View as PDF

Submit solution


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

Author:
Problem type
Canadian Computing Competition: 2024 Stage 1, Senior #1

At a recent social gathering, N people sit around a circular table, where N is even. The seats are numbered clockwise from 1 to N . Each person is wearing a hat with a number on it. Specifically, the person at seat i is wearing a hat with the number Hi on it.

Each person looks at the person who is directly across (diametrically opposite) them in the circle.

Determine the number of people who see someone with a hat with the same number as their own.

Input Specification

The first line of input will consist of one even positive integer N, representing the number of people at the social gathering.

The next N lines each contain a single non-negative integer Hi, representing the hat number of person i.

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

Marks Bounds on N Bounds on Hi Description
2 N4 Hi1 Very small number of people; only two hat numbers
1 N100 Hi=1 Only one hat number
2 N100 Hi1 People in even numbered seats have hat number 1; people in odd numbered seats have hat number 0
5 N2000 Hi4000 Medium number of people
5 N1000000 Hi2000000 Large number of people and hat numbers

Output Specification

Output a single integer representing the number of people who see their hat number on the person directly across from them.

Sample Input 1

Copy
4
0
1
0
1

Output for Sample Input 1

Copy
4

Explanation for Output for Sample Input 1

The four seats around the table are shown below. Hat numbers are shown inside each seat and seat numbers are shown beside each seat. Notice that every person sees their hat number. The people in seats 1 and 3 both see hat number 0, and the people in seats 2 and 4 both see hat number 1.

Sample Input 2

Copy
4
1
0
0
1

Output for Sample Input 2

Copy
0

Explanation for Output for Sample Input 2

The four seats around the table are shown below. Hat numbers are shown inside each seat and seat numbers are shown beside each seat. Notice that no person sees their hat number. The people in seats 1 and 4 both see hat number 0, and the people in seats 2 and 3 both see hat number 1.


Comments

There are no comments at the moment.