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

探讨了在1*n大小的特殊棋盘上,如何通过最少步骤将棋子全部移至相同颜色格子的问题。文章提供了算法思路及C++实现代码。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

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 ≤ 100n 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 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.


题意:给你一个1*n(n偶数)的棋盘,给你n/2个棋子下标,让你把所有棋子全放到奇数位置或全放到偶数位置,棋子平移到相邻位置花费为一,求最小花费。

思路:只可能放到奇数位或偶数位,且一一对应,先排序,分别算两种情况对应位置与排好序的初始下标相减的绝对值之和即为两种情况的最优解,再取min(奇数位花费,偶数位花费)即为答案。

#include <cstdio>
#include <cstring>
#include <cmath>
#include <iostream>
#include <algorithm>
using namespace std;
#define ll long long
const int maxn = 105;

int main()
{
        int n, a[maxn], odd = 0, even = 0;
        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, temp = 1; i <= n/2; i ++, temp += 2) {
                odd += abs(a[i] - temp);
                even += abs(a[i] - temp - 1);
        }
        printf("%d\n", min(odd, even));
}




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值