前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Educational Codeforces Round 44 (Rated for Div. 2)A. Chess Placing

Educational Codeforces Round 44 (Rated for Div. 2)A. Chess Placing

作者头像
用户2965768
发布2018-08-30 16:12:12
4290
发布2018-08-30 16:12:12
举报
文章被收录于专栏:wymwym

A. Chess Placing

time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

You are given a chessboard of size 1 × n. It is guaranteed that n is even. The chessboard is painted like this: "BWBW...BW".

Some cells of the board are occupied by the chess pieces. Each cell contains no more than one chess piece. It is known that the total number of pieces equals to 

.

In one step you can move one of the pieces one cell to the left or to the right. You cannot move pieces beyond the borders of the board. You also cannot move pieces to the cells that are already occupied.

Your task is to place all the pieces in the cells of the same color using the minimum number of moves (all the pieces must occupy only the black cells or only the white cells after all the moves are made).

Input

The first line of the input contains one integer n (2 ≤ n ≤ 100, n is even) — the size of the chessboard.

The second line of the input contains 

 integer numbers 

 (1 ≤ pi ≤ n) — initial positions of the pieces. It is guaranteed that all the positions are distinct.

Output

Print one integer — the minimum number of moves you have to make to place all the pieces in the cells of the same color.

Examples

input

Copy

代码语言:javascript
复制
6
1 2 6

output

Copy

代码语言:javascript
复制
2

input

Copy

代码语言:javascript
复制
10
1 2 3 4 5

output

Copy

代码语言:javascript
复制
10

Note

In the first example the only possible strategy is to move the piece at the position 6 to the position 5 and move the piece at the position 2to the position 3. Notice that if you decide to place the pieces in the white cells the minimum number of moves will be 3.

In the second example the possible strategy is to move 

 in 4 moves, then 

 in 3 moves, 

 in 2 moves and 

 in 1 move.

题意:将一个数列变成奇数列或偶数列,最少需要加减多少次

记录两种答案,输出最小的即可

#include <iostream> #include <cmath> #include <algorithm> using namespace std; int main() { int n,ans1=0,ans2=0; int a[105]; scanf("%d",&n); for(int i=1;i<=n/2;i++)   scanf("%d",&a[i]);   sort(a+1,a+n/2+1); for(int i=1,j=1,k=2;i<=n/2;i++,j+=2,k+=2) { ans1+=abs(a[i]-j); ans2+=abs(a[i]-k); } printf("%d\n",min(ans1,ans2)); return 0;  } 

本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2018年05月22日,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档