COCI '17 Contest 3 #5 Dojave

View as PDF

Submit solution

Points: 17 (partial)
Time limit: 4.0s
Memory limit: 256M

Problem types

The biggest event of the year ended tragically for Croatian teams. The most influential theoretician of CERC of all time, the founder of the popular page CERC Tips, and in his free time an outstanding bass player, in his most recent performance failed to get his team to the finals.

In order to get over his existential troubles, our subject is spending time playing games of chance. He is especially interested in the following game:

You are given a positive integer M. Our protagonist sees in front of him a permutation of an array of numbers 0, 1, \dots, 2^M-1. The computer chooses a nonempty contiguous subsequence of the given permutation, which it then lights up over a capital city of one of the countries in Southeastern Europe.

Our confidant, after fighting off tears caused by memories of old times, must choose two distinct elements of the permutation and swap their places. Our man of the hour wins if and only if the bitwise XOR of the numbers in the lit up subsequence after the substitution is precisely 2^M-1.

Our hero wants to know the number of contiguous subsequences the computer can light up so that he can win. Help our hero overcome his (id)entity crisis so our favourite page can be fully active again.

Input Specification

The first line of input contains the integer M (1 \le M \le 20).

The following line contains 2^M space-separated numbers that make up a permutation of the array 0, 1, \dots, 2^M-1.

Output Specification

You must output the total number of contiguous subsequences that a computer can light up so our hero can win.

Scoring

In test cases worth 50\% of total points, it will hold 1 \le M \le 14.

Sample Input 1

2
0 1 2 3

Sample Output 1

9

Explanation for Sample Output 1

If the computer chooses the subsequence [1, 2, 3], our hero can replace the numbers 0 and 3. In this case, he can actually win for every chosen contiguous subsequence, except the entire array.

Sample Input 2

3
3 7 0 4 6 1 5 2

Sample Output 2

33

Explanation for Sample Output 2

If the computer chooses the entire array [3, 7, 0, 4, 6, 1, 5, 2] as the lit up subsequence, our hero can't change the XOR of the subsequence (which is 0), no matter which two elements are swapped.

Sample Input 3

4
13 0 15 12 4 8 7 3 11 14 6 10 1 5 9 2

Sample Output 3

133

Comments

There are no comments at the moment.