COCI '15 Contest 2 #5 Vudu

View as PDF

Submit solution


Points: 15 (partial)
Time limit: 0.6s
Java 1.0s
Python 1.0s
Memory limit: 64M

Problem types

Young Mirko has been buying voodoo dolls lately. Considering that he is very interested in the cheapest purchase possible, he has been tracking the prices of voodoo dolls each day. His price list consists of doll prices in the last N days, where doll price a_i represents the price of a doll i days ago.

Mirko thinks he has noticed a connection between the average doll price in a sequence of consecutive days and the price on the following day. He wants to test his hunch and is puzzled by a very interesting question: "For a given P, how many different consecutive subsequences in the last N days are there, when the average doll price was greater than or equal to P?"

Two consecutive subsequences are considered different if their beginnings or ends are different.

Input Specification

The first line of input contains the integer N, the sequence length (1 \le N \le 1\,000\,000).
The second line of input contains N prices a_i (0 \le a_i \le 1\,000\,000\,000).
The third line of input contains an integer P (0 \le P \le 1\,000\,000\,000).

In test cases worth 30% of points the sequence length N will be less than or equal to 10\,000.

Output Specification

The first and only line of output must contain the answer to Mirko's question for a given P.

Sample Input 1

3
1 2 3
3

Sample Output 1

1

Explanation for Sample Output 1

The only subsequence that has an average greater than or equal to 3 is \{3\}.

Sample Input 2

3
1 3 2
2

Sample Output 2

5

Explanation for Sample Output 2

The subsequences that have an average greater than or equal to 2 are \{1, 3\}, \{1, 3, 2\}, \{3\}, \{3, 2\}, \{2\}

Sample Input 3

3
1 3 2
3

Sample Output 3

1

Comments

There are no comments at the moment.