CF1677A.Tokitsukaze and Strange Inequality

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Tokitsukaze has a permutation pp of length nn . Recall that a permutation pp of length nn is a sequence p1,p2,,pnp_1, p_2, \ldots, p_n consisting of nn distinct integers, each of which from 11 to nn ( 1pin1 \leq p_i \leq n ).

She wants to know how many different indices tuples [a,b,c,d][a,b,c,d] ( 1a<b<c<dn1 \leq a < b < c < d \leq n ) in this permutation satisfy the following two inequalities:

pa<pcp_a < p_c and pb>pdp_b > p_d . Note that two tuples [a1,b1,c1,d1][a_1,b_1,c_1,d_1] and [a2,b2,c2,d2][a_2,b_2,c_2,d_2] are considered to be different if a1a2a_1 \ne a_2 or b1b2b_1 \ne b_2 or c1c2c_1 \ne c_2 or d1d2d_1 \ne d_2 .

输入格式

The first line contains one integer tt ( 1t10001 \leq t \leq 1000 ) — the number of test cases. Each test case consists of two lines.

The first line contains a single integer nn ( 4n50004 \leq n \leq 5000 ) — the length of permutation pp .

The second line contains nn integers p1,p2,,pnp_1, p_2, \ldots, p_n ( 1pin1 \leq p_i \leq n ) — the permutation pp .

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

输出格式

For each test case, print a single integer — the number of different [a,b,c,d][a,b,c,d] tuples.

输入输出样例

  • 输入#1

    3
    6
    5 3 6 1 4 2
    4
    1 2 3 4
    10
    5 1 6 2 8 3 4 10 9 7

    输出#1

    3
    0
    28

说明/提示

In the first test case, there are 33 different [a,b,c,d][a,b,c,d] tuples.

p1=5p_1 = 5 , p2=3p_2 = 3 , p3=6p_3 = 6 , p4=1p_4 = 1 , where p1<p3p_1 < p_3 and p2>p4p_2 > p_4 satisfies the inequality, so one of [a,b,c,d][a,b,c,d] tuples is [1,2,3,4][1,2,3,4] .

Similarly, other two tuples are [1,2,3,6][1,2,3,6] , [2,3,5,6][2,3,5,6] .

首页