CF1676H1.Maximum Crossings (Easy Version)

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The only difference between the two versions is that in this version n1000n \leq 1000 and the sum of nn over all test cases does not exceed 10001000 .

A terminal is a row of nn equal segments numbered 11 to nn in order. There are two terminals, one above the other.

You are given an array aa of length nn . For all i=1,2,,ni = 1, 2, \dots, n , there should be a straight wire from some point on segment ii of the top terminal to some point on segment aia_i of the bottom terminal. For example, the following pictures show two possible wirings if n=7n=7 and a=[4,1,4,6,7,7,5]a=[4,1,4,6,7,7,5] .

A crossing occurs when two wires share a point in common. In the picture above, crossings are circled in red.

What is the maximum number of crossings there can be if you place the wires optimally?

输入格式

The first line contains an integer tt ( 1t10001 \leq t \leq 1000 ) — the number of test cases.

The first line of each test case contains an integer nn ( 1n10001 \leq n \leq 1000 ) — the length of the array.

The second line of each test case contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 1ain1 \leq a_i \leq n ) — the elements of the array.

The sum of nn across all test cases does not exceed 10001000 .

输出格式

For each test case, output a single integer — the maximum number of crossings there can be if you place the wires optimally.

输入输出样例

  • 输入#1

    4
    7
    4 1 4 6 7 7 5
    2
    2 1
    1
    1
    3
    2 2 2

    输出#1

    6
    1
    0
    3

说明/提示

The first test case is shown in the second picture in the statement.

In the second test case, the only wiring possible has the two wires cross, so the answer is 11 .

In the third test case, the only wiring possible has one wire, so the answer is 00 .

首页