CF220E.Little Elephant and Inversions

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The Little Elephant has array aa , consisting of nn positive integers, indexed from 1 to nn . Let's denote the number with index ii as aia_{i} .

The Little Elephant wants to count, how many pairs of integers ll and rr are there, such that 1<=l<r<=n and sequence b=a1a2... alarar+1... anb=a_{1}a_{2}...\ a_{l}a_{r}a_{r+1}...\ a_{n} has no more than kk inversions.

An inversion in sequence bb is a pair of elements of the sequence bb , that change their relative order after a stable sorting of the sequence. In other words, an inversion is a pair of integers ii and jj , such that 1<=i<j<=|b| and b_{i}>b_{j} , where b|b| is the length of sequence bb , and bjb_{j} is its jj -th element.

Help the Little Elephant and count the number of the described pairs.

输入格式

The first line contains two integers nn and kk (2<=n<=105,0<=k<=1018)(2<=n<=10^{5},0<=k<=10^{18}) — the size of array aa and the maximum allowed number of inversions respectively. The next line contains nn positive integers, separated by single spaces, a1,a2,...,ana_{1},a_{2},...,a_{n} (1<=ai<=109)(1<=a_{i}<=10^{9}) — elements of array aa .

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

输出格式

In a single line print a single number — the answer to the problem.

输入输出样例

  • 输入#1

    3 1
    1 3 2
    

    输出#1

    3
    
  • 输入#2

    5 2
    1 3 2 1 7
    

    输出#2

    6
    
首页