当前位置:   article > 正文

codeforces 985A Chess Placing_a. chess placing

a. chess placing
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
6
1 2 6
Output
Copy
2
Input
Copy
10
1 2 3 4 5
Output
Copy
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 2 to 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.

题意

n大小的黑白棋盘,上面有n/2个棋子,告诉你位置,问最少移动多少次使他们全部在白色或全部在黑色

思路

分别移动到白色和黑色,看那个步数最少

  1. #include <iostream>
  2. #include <bits/stdc++.h>
  3. using namespace std;
  4. int a[120],b[120];
  5. int main()
  6. {
  7. int n,i,j,x,sum1,sum2;
  8. while(cin>>n)
  9. {
  10. for(i=0;i<n/2;i++)
  11. {
  12. cin>>x;
  13. a[x] = 1;
  14. b[x] = 1;
  15. }
  16. x = 1;
  17. sum1 = 0;sum2 = 0;
  18. for(i=1;i<=n;i++)
  19. {
  20. if(a[i]==1)
  21. {
  22. sum1 += abs(x-i);
  23. x += 2;
  24. }
  25. }
  26. x=2;
  27. for(i=1;i<=n;i++)
  28. {
  29. if(a[i]==1)
  30. {
  31. sum2 += abs(x-i);
  32. x += 2;
  33. }
  34. }
  35. if(sum1>sum2) sum1 = sum2;
  36. cout<<sum1<<endl;
  37. }
  38. return 0;
  39. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/运维做开发/article/detail/912676
推荐阅读
  

闽ICP备14008679号