CF193D.Two Segments

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Nick has some permutation consisting of pp integers from 11 to nn . A segment [l,r][l,r] ( l<=rl<=r ) is a set of elements pip_{i} satisfying l<=i<=rl<=i<=r .

Nick calls a pair of segments [a0,a1][a_{0},a_{1}] and [b0,b1][b_{0},b_{1}] ( 1<=a_{0}<=a_{1}<b_{0}<=b_{1}<=n ) good if all their (a1a0+b1b0+2)(a_{1}-a_{0}+b_{1}-b_{0}+2) elements, when sorted in ascending order, form an arithmetic progression with a difference of 11 . That is, when they sorted in ascending order, the elements are in the form x,x+1,x+2,...,x+m1{x,x+1,x+2,...,x+m-1} , for some xx and mm .

Your task is to find the number of distinct pairs of good segments in the given permutation. Two pairs of segments are considered distinct if the sets of elements contained in these pairs of segments are distinct. For example, any segment [l,r][l,r] (l<r) can be represented as a pair of segments, as [l,i][l,i] and [i+1,r][i+1,r] ( l<=i<=rl<=i<=r ). As all these pairs consist of the same set of elements, they are considered identical.

See the notes accompanying the sample tests for clarification.

输入格式

The first line contains integer nn ( 1<=n<=31051<=n<=3·10^{5} ) — the permutation size. The second line contains nn space-separated distinct integers pip_{i} , ( 1<=pi<=n1<=p_{i}<=n ).

输出格式

Print a single integer — the number of good pairs of segments of permutation pp .

Please, do not use the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the %I64d specifier.

输入输出样例

  • 输入#1

    3
    1 2 3
    

    输出#1

    3
    
  • 输入#2

    5
    1 4 5 3 2
    

    输出#2

    10
    
  • 输入#3

    5
    5 4 3 1 2
    

    输出#3

    10
    

说明/提示

In the first sample the following pairs of segments are good: ( [1,1][1,1] , [2,2][2,2] ); ( [2,2][2,2] , [3,3][3,3] ); ( [1,2][1,2] , [3,3][3,3] ). Pair of segments ( [1,1][1,1] , [2,3][2,3] ) is by definition equivalent to pair ( [1,2][1,2] , [3,3][3,3] ), since both of them covers the same set of elements, namely 1,2,3{1,2,3} .

In the third sample the following pairs of segments are good: ( [4,4][4,4] , [5,5][5,5] ); ( [3,3][3,3] , [4,5][4,5] ); ( [2,2][2,2] , [3,5][3,5] ); ( [1,1][1,1] , [2,5][2,5] ); ( [3,3][3,3] , [5,5][5,5] ); ( [2,3][2,3] , [5,5][5,5] ); ( [1,3][1,3] , [5,5][5,5] ); ( [2,2][2,2] , [3,3][3,3] ); ( [1,1][1,1] , [2,3][2,3] ); ( [1,1][1,1] , [2,2][2,2] ).

首页