题库练习 Special Permutations
← 上一题 下一题 →

A12901 | Special Permutations

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

Let's define $p_i(n)$ as the following permutation: $[i, 1, 2, \dots, i - 1, i + 1, \dots, n]$ . This means that the $i$ -th permutation is almost identity (i.e. which maps every element to itself) permutation but the element $i$ is on the first position. Examples:

- $p_1(4) = [1, 2, 3, 4]$ ;
- $p_2(4) = [2, 1, 3, 4]$ ;
- $p_3(4) = [3, 1, 2, 4]$ ;
- $p_4(4) = [4, 1, 2, 3]$ .

You are given an array $x_1, x_2, \dots, x_m$ ( $1 \le x_i \le n$ ).

Let $pos(p, val)$ be the position of the element $val$ in $p$ . So, $pos(p_1(4), 3) = 3, pos(p_2(4), 2) = 1, pos(p_4(4), 4) = 1$ .

Let's define a function $f(p) = \sum\limits_{i=1}^{m - 1} |pos(p, x_i) - pos(p, x_{i + 1})|$ , where $|val|$ is the absolute value of $val$ . This function means the sum of distances between adjacent elements of $x$ in $p$ .

Your task is to calculate $f(p_1(n)), f(p_2(n)), \dots, f(p_n(n))$ .

输入格式

The first line of the input contains two integers $n$ and $m$ ( $2 \le n, m \le 2 \cdot 10^5$ ) — the number of elements in each permutation and the number of elements in $x$ .

The second line of the input contains $m$ integers ( $m$ , not $n$ ) $x_1, x_2, \dots, x_m$ ( $1 \le x_i \le n$ ), where $x_i$ is the $i$ -th element of $x$ . Elements of $x$ can repeat and appear in arbitrary order.

输出格式

Print $n$ integers: $f(p_1(n)), f(p_2(n)), \dots, f(p_n(n))$ .

输入输出样例

输入 #1
4 4
1 2 3 4
输出 #1
3 4 6 5 
输入 #2
5 5
2 1 5 3 5
输出 #2
9 8 12 6 8 
输入 #3
2 10
1 2 1 1 2 2 2 2 2 2
输出 #3
3 3 
C++ 编辑器
输入
输出