CF1764C.Doremy's City Construction

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Doremy's new city is under construction! The city can be regarded as a simple undirected graph with nn vertices. The ii -th vertex has altitude aia_i . Now Doremy is deciding which pairs of vertices should be connected with edges.

Due to economic reasons, there should be no self-loops or multiple edges in the graph.

Due to safety reasons, there should not be pairwise distinct vertices uu , vv , and ww such that auavawa_u \leq a_v \leq a_w and the edges (u,v)(u,v) and (v,w)(v,w) exist.

Under these constraints, Doremy would like to know the maximum possible number of edges in the graph. Can you help her?

Note that the constructed graph is allowed to be disconnected.

输入格式

The input consists of multiple test cases. The first line contains a single integer tt ( 1t1041\le t\le 10^4 ) — the number of test cases. The description of the test cases follows.

The first line of each test case contains a single integer nn ( 2n21052 \le n \le 2\cdot 10^5 ) — the number of vertices.

The second line of each test case contains nn integers a1,a2,,ana_1, a_2, \dots, a_n ( 1ai1061\le a_i\le 10^6 ) — the altitudes of each vertex.

It is guaranteed that the sum of nn over all test cases does not exceed 21052 \cdot 10^5 .

输出格式

For each test case, output the maximum possible number of edges in the graph.

输入输出样例

  • 输入#1

    4
    4
    2 2 3 1
    6
    5 2 3 1 5 2
    12
    7 2 4 9 1 4 6 3 7 4 2 3
    4
    1000000 1000000 1000000 1000000

    输出#1

    3
    9
    35
    2

说明/提示

In the first test case, there can only be at most 33 edges in the graph. A possible construction is to connect (1,3)(1,3) , (2,3)(2,3) , (3,4)(3,4) . In the picture below the red number above node ii is aia_i .

The following list shows all such uu , vv , ww that the edges (u,v)(u,v) and (v,w)(v,w) exist.

  • u=1u=1 , v=3v=3 , w=2w=2 ;
  • u=1u=1 , v=3v=3 , w=4w=4 ;
  • u=2u=2 , v=3v=3 , w=1w=1 ;
  • u=2u=2 , v=3v=3 , w=4w=4 ;
  • u=4u=4 , v=3v=3 , w=1w=1 ;
  • u=4u=4 , v=3v=3 , w=2w=2 .

Another possible construction is to connect (1,4)(1,4) , (2,4)(2,4) , (3,4)(3,4) .

An unacceptable construction is to connect (1,3)(1,3) , (2,3)(2,3) , (2,4)(2,4) , (3,4)(3,4) . Because when u=4u=4 , v=2v=2 , w=3w=3 , auavawa_u\le a_v \le a_w holds, and the respective edges exist.

首页