CF258D.Little Elephant and Broken Sorting

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The Little Elephant loves permutations of integers from 11 to nn very much. But most of all he loves sorting them. To sort a permutation, the Little Elephant repeatedly swaps some elements. As a result, he must receive a permutation 1,2,3,...,n1,2,3,...,n .

This time the Little Elephant has permutation p1,p2,...,pnp_{1},p_{2},...,p_{n} . Its sorting program needs to make exactly mm moves, during the ii -th move it swaps elements that are at that moment located at the aia_{i} -th and the bib_{i} -th positions. But the Little Elephant's sorting program happened to break down and now on every step it can equiprobably either do nothing or swap the required elements.

Now the Little Elephant doesn't even hope that the program will sort the permutation, but he still wonders: if he runs the program and gets some permutation, how much will the result of sorting resemble the sorted one? For that help the Little Elephant find the mathematical expectation of the number of permutation inversions after all moves of the program are completed.

We'll call a pair of integers i,ji,j (1<=i<j<=n)(1<=i<j<=n) an inversion in permutatuon p1,p2,...,pnp_{1},p_{2},...,p_{n} , if the following inequality holds: pi>pjp_{i}>p_{j} .

输入格式

The first line contains two integers nn and mm (1<=n,m<=1000,n>1) — the permutation size and the number of moves. The second line contains nn distinct integers, not exceeding nn — the initial permutation. Next mm lines each contain two integers: the ii -th line contains integers aia_{i} and bib_{i} (1<=ai,bi<=n,aibi)(1<=a_{i},b_{i}<=n,a_{i}≠b_{i}) — the positions of elements that were changed during the ii -th move.

输出格式

In the only line print a single real number — the answer to the problem. The answer will be considered correct if its relative or absolute error does not exceed 10610^{-6} .

输入输出样例

  • 输入#1

    2 1
    1 2
    1 2
    

    输出#1

    0.500000000
    
  • 输入#2

    4 3
    1 3 2 4
    1 2
    2 3
    1 4
    

    输出#2

    3.000000000
    
首页