COCI '06 Contest 5 #5 Ivana

View as PDF

Submit solution


Points: 15 (partial)
Time limit: 0.6s
Memory limit: 32M

Problem type

Even though she saw Zvonko steal Mirko's microprocessor in the second task, Mirko's sister Ivana did not tell Mirko because she likes Zvonko. She suggested to him that they go see a movie together so that she would "forget" about the incident.

Zvonko does not care much for girls because they take away precious time he usually spends practicing his math-fu. He suggested that the two of them play a game and, if Ivana wins, they will go see a movie together. Ivana agreed, being good at jump rope and she sometimes even kicks a football around with her two brothers.

Zvonko laid N positive integers in a circle on the floor and explained the rules:

  • The first player takes any number.
  • The second player takes either of the two numbers adjacent to the one the first player took.
  • The next player takes a number adjacent to any of the numbers taken so far, and so on until they run out of numbers. The player to take more odd numbers (not divisible by 2) wins.

Zvonko plays optimally; he always looks for a strategy that leads to certain victory or a draw. Zvonko does not know how well Ivana plays. Being a true cavalier, he let Ivana have the first move.

But Ivana only cares about sitting next to Zvonko in front of the big screen so she seeks help playing.

Write a program that finds how many different first moves Ivana can make, so that she has a chance of winning afterwards.

Input Specification

The first line of input contains an integer N (1 \le N \le 100), how many numbers there are in the circle.

The second line contains N integers separated by single spaces. All numbers will be between 1 and 1\,000 (inclusive). No two numbers will be the same.

Output Specification

Output the desired number on a single line.

Sample Input 1

3
3 1 5

Sample Output 1

3

Explanation of Sample Output 1

Whichever number Ivana takes first, she'll end up with two odd numbers, and Zvonko will have gotten only one.

Sample Input 2

4
1 2 3 4

Sample Output 2

2

Explanation of Sample Output 2

If Ivana takes one of the even numbers, Zvonko will take one of the odd numbers and ensure a draw. If she takes an odd number, Zvonko will have to take an even number and then lose because Ivana can take the other odd number.

Sample Input 3

8
4 10 5 2 9 8 1 7

Sample Output 3

5

Comments


  • -4
    noYou  commented on May 18, 2020, 11:44 p.m.

    Why is this not tagged Game Theory?