跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2512. Building Permutation

    ID: 2518 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 2 上传者: 标签>贪心模拟排序算法思想编程与模拟基础难度共享题库Codeforces英文题面题目来源题面语言

Building Permutation

题目描述

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,...,pn, consisting of n distinct positive integers, each of them doesn't exceed n. We'll denote the i-th element of permutation p as pi. We'll call number n the size or the length of permutation p1,p2,...,pn.

You have a sequence of integers a1,a2,...,an. 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,...,an (-109ai≤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 C++. It is preferred to use the cin, cout streams or the %I64d specifier.

Examples
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).


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2154 题。保留原作者与原赛事署名。