Canadian Computing Competition: 2024 Stage 1, Senior #1
At a recent social gathering,
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
The next
The following table shows how the available 15 marks are distributed:
Marks | Bounds on |
Bounds on |
Description |
---|---|---|---|
2 | Very small number of people; only two hat numbers | ||
1 | Only one hat number | ||
2 | People in even numbered seats have hat number |
||
5 | Medium number of people | ||
5 | 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
4
0
1
0
1
Output for Sample Input 1
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
Sample Input 2
4
1
0
0
1
Output for Sample Input 2
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
Comments