Rexdf

The devil is in the Details.

Codeforces 175 C

| Comments

C. Building Permutation

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Permutation p is an ordered set of integers p1,  p2,  …,  p__n, consisting of n distinct positive integers, each of them doesn’t exceed n. We’ll denote the i-th element of permutation p as p__i. We’ll call number n the size or the length of permutation p1,  p2,  …,  p__n. You have a sequence of integers a1, a2, …, a__n. In one move, you are allowed to decrease or increase any number by one. Count the minimum number of moves, needed to build a permutation from this sequence.

Input

The first line contains integer n (1 ≤ n ≤ 3·105) — the size of the sought permutation. The second line contains n integers_a1, _a2, …, a__n ( - 109 ≤ a__i ≤ 109).

Output

Print a single number — the minimum number of moves. 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 %I64dspecifier.

Sample test(s)

input

2 3 0

output

2

input

3 -1 -1 2

output

6

Note

In the first sample you should decrease the first number by one and then increase the second number by one. The resulting permutation is (2, 1). In the second sample you need 6 moves to build permutation (1, 3, 2).

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>

using namespace std;

long long a[300005];


int main()
{
    int n;
    long long ans,tmp;
    cin>>n;
    for(int i=0;i<n;i++)cin>>a[i];
    sort(a,a+n);
    ans=0;
    for(int i=0;i<n;i++)
    {
        tmp=(long long)(i+1)-a[i];
        if(tmp<0)ans-=tmp;
        else ans+=tmp;
    }
    cout<<ans<<endl;
    return 0;
}

Comments