CF1919E.Counting Prefixes

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

There is a hidden array aa of size nn consisting of only 11 and 1-1 . Let pp be the prefix sums of array aa . More formally, pp is an array of length nn defined as pi=a1+a2++aip_i = a_1 + a_2 + \ldots + a_i . Afterwards, array pp is sorted in non-decreasing order. For example, if a=[1,1,1,1,1]a = [1, -1, -1, 1, 1] , then p=[1,0,1,0,1]p = [1, 0, -1, 0, 1] before sorting and p=[1,0,0,1,1]p = [-1, 0, 0, 1, 1] after sorting.

You are given the prefix sum array pp after sorting, but you do not know what array aa is. Your task is to count the number of initial arrays aa such that the above process results in the given sorted prefix sum array pp . As this number can be large, you are only required to find it modulo 998244353998\,244\,353 .

输入格式

Each test contains multiple test cases. The first line contains a single integer tt ( 1t10001 \leq t \leq 1000 ) — the number of test cases. The description of the test cases follows.

The first line of each test case contains a single integer nn ( 1n50001 \le n \le 5000 ) — the size of the hidden array aa .

The second line of each test case contains nn integers p1,p2,,pnp_1, p_2, \ldots, p_n ( pin|p_i| \le n ) — the nn prefix sums of aa sorted in non-decreasing order.

It is guaranteed that p1p2pnp_1 \le p_2 \le \ldots \le p_n .

It is guaranteed that the sum of nn over all test cases does not exceed 50005000 .

输出格式

For each test case, output the answer modulo 998244353998\,244\,353 .

输入输出样例

  • 输入#1

    5
    1
    0
    1
    1
    3
    -1 1 2
    5
    -1 0 0 1 1
    5
    -4 -3 -3 -2 -1

    输出#1

    0
    1
    0
    3
    1

说明/提示

In the first two test cases, the only possible arrays aa for n=1n = 1 are a=[1]a = [1] and a=[1]a = [-1] . Their respective sorted prefix sum arrays pp are p=[1]p = [1] and p=[1]p = [-1] . Hence, there is no array aa that can result in the sorted prefix sum array p=[0]p = [0] and there is exactly 11 array aa that can result in the sorted prefix sum array p=[1]p = [1] .

In the third test case, it can be proven that there is no array aa that could result in the sorted prefix sum array p=[1,1,2]p = [-1, 1, 2] .

In the fourth test case, the 33 possible arrays aa that could result in the sorted prefix sum array p=[1,0,0,1,1]p = [-1, 0, 0, 1, 1] are:

  • a=[1,1,1,1,1]a = [1, -1, 1, -1, -1] . The prefix sum array before sorting is p=[1,0,1,0,1]p = [1, 0, 1, 0, -1] , which after sorting gives p=[1,0,0,1,1]p = [-1, 0, 0, 1, 1] .
  • a=[1,1,1,1,1]a = [1, -1, -1, 1, 1] . The prefix sum array before sorting is p=[1,0,1,0,1]p = [1, 0, -1, 0, 1] , which after sorting gives p=[1,0,0,1,1]p = [-1, 0, 0, 1, 1] .
  • a=[1,1,1,1,1]a = [-1, 1, 1, -1, 1] . The prefix sum array before sorting is p=[1,0,1,0,1]p = [-1, 0, 1, 0, 1] , which after sorting gives p=[1,0,0,1,1]p = [-1, 0, 0, 1, 1] .

For the fifth test case, the only possible array aa that could result in the sorted prefix sum array p=[4,3,3,2,1]p = [-4, -3, -3, -2, -1] is a=[1,1,1,1,1]a = [-1, -1, -1, -1, 1] .

首页