CF351B.Jeff and Furik

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Jeff has become friends with Furik. Now these two are going to play one quite amusing game.

At the beginning of the game Jeff takes a piece of paper and writes down a permutation consisting of nn numbers: p1p_{1} , p2p_{2} , ...... , pnp_{n} . Then the guys take turns to make moves, Jeff moves first. During his move, Jeff chooses two adjacent permutation elements and then the boy swaps them. During his move, Furic tosses a coin and if the coin shows "heads" he chooses a random pair of adjacent elements with indexes ii and i+1i+1 , for which an inequality p_{i}>p_{i+1} holds, and swaps them. But if the coin shows "tails", Furik chooses a random pair of adjacent elements with indexes ii and i+1i+1 , for which the inequality p_{i}<p_{i+1} holds, and swaps them. If the coin shows "heads" or "tails" and Furik has multiple ways of adjacent pairs to take, then he uniformly takes one of the pairs. If Furik doesn't have any pair to take, he tosses a coin one more time. The game ends when the permutation is sorted in the increasing order.

Jeff wants the game to finish as quickly as possible (that is, he wants both players to make as few moves as possible). Help Jeff find the minimum mathematical expectation of the number of moves in the game if he moves optimally well.

You can consider that the coin shows the heads (or tails) with the probability of 5050 percent.

输入格式

The first line contains integer nn (1<=n<=3000)(1<=n<=3000) . The next line contains nn distinct integers p1p_{1} , p2p_{2} , ...... , pnp_{n} (1<=pi<=n)(1<=p_{i}<=n) — the permutation pp . The numbers are separated by spaces.

输出格式

In a single line print a single real value — the answer to the problem. The answer will be considered correct if the absolute or relative error doesn't exceed 10610^{-6} .

输入输出样例

  • 输入#1

    2
    1 2
    

    输出#1

    0.000000
    
  • 输入#2

    5
    3 5 2 4 1
    

    输出#2

    13.000000
    

说明/提示

In the first test the sequence is already sorted, so the answer is 00 .

首页