100502: [AtCoder]ABC050 C - Lining Up

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $300$ points

Problem Statement

There are $N$ people, conveniently numbered $1$ through $N$. They were standing in a row yesterday, but now they are unsure of the order in which they were standing. However, each person remembered the following fact: the absolute difference of the number of the people who were standing to the left of that person, and the number of the people who were standing to the right of that person. According to their reports, the difference above for person $i$ is $A_i$.

Based on these reports, find the number of the possible orders in which they were standing. Since it can be extremely large, print the answer modulo $10^9+7$. Note that the reports may be incorrect and thus there may be no consistent order. In such a case, print $0$.

Constraints

  • $1≦N≦10^5$
  • $0≦A_i≦N-1$

Input

The input is given from Standard Input in the following format:

$N$
$A_1$ $A_2$ $...$ $A_N$

Output

Print the number of the possible orders in which they were standing, modulo $10^9+7$.


Sample Input 1

5
2 4 4 0 2

Sample Output 1

4

There are four possible orders, as follows:

  • $2,1,4,5,3$
  • $2,5,4,1,3$
  • $3,1,4,5,2$
  • $3,5,4,1,2$

Sample Input 2

7
6 4 0 2 4 0 2

Sample Output 2

0

Any order would be inconsistent with the reports, thus the answer is $0$.


Sample Input 3

8
7 5 1 1 7 3 5 3

Sample Output 3

16

Input

题意翻译

有编号为1-N号的N个人,他们都记得“自己左边排队的人数和自己右边排队的人数之差的绝对值”,根据他们的报告,给你i的「自己的左排列的人数和自己的右排列的人数的差的绝对值」Ai。 请根据他们的报告,求出原来的排列方法有几种。但是,因为答案有时候会变得很大,请对10^9+7取模 。另外,他们的报告可能有错误,没有可能的排列方法,此时请输出0。 范围: $$ 1≦N≦10^5; 0≦Ai≦N−1. $$

加入题单

算法标签: