A11007 | Mister B and PR Shifts
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Some time ago Mister B detected a strange signal from the space, which he started to study.
After some transformation the signal turned out to be a permutation $p$ of length $n$ or its cyclic shift. For the further investigation Mister B need some basis, that's why he decided to choose cyclic shift of this permutation which has the minimum possible deviation.
Let's define the deviation of a permutation $p$ as .
Find a cyclic shift of permutation $p$ with minimum possible deviation. If there are multiple solutions, print any of them.
Let's denote id $k$ ( $0<=k<n$ ) of a cyclic shift of permutation $p$ as the number of right shifts needed to reach this shift, for example:
- $k=0$ : shift $p_{1},p_{2},...\ p_{n}$ ,
- $k=1$ : shift $p_{n},p_{1},...\ p_{n-1}$ ,
- ...,
- $k=n-1$ : shift $p_{2},p_{3},...\ p_{n},p_{1}$ .
After some transformation the signal turned out to be a permutation $p$ of length $n$ or its cyclic shift. For the further investigation Mister B need some basis, that's why he decided to choose cyclic shift of this permutation which has the minimum possible deviation.
Let's define the deviation of a permutation $p$ as .
Find a cyclic shift of permutation $p$ with minimum possible deviation. If there are multiple solutions, print any of them.
Let's denote id $k$ ( $0<=k<n$ ) of a cyclic shift of permutation $p$ as the number of right shifts needed to reach this shift, for example:
- $k=0$ : shift $p_{1},p_{2},...\ p_{n}$ ,
- $k=1$ : shift $p_{n},p_{1},...\ p_{n-1}$ ,
- ...,
- $k=n-1$ : shift $p_{2},p_{3},...\ p_{n},p_{1}$ .
输入格式
First line contains single integer $n$ ( $2<=n<=10^{6}$ ) — the length of the permutation.
The second line contains $n$ space-separated integers $p_{1},p_{2},...,p_{n}$ ( $1<=p_{i}<=n$ ) — the elements of the permutation. It is guaranteed that all elements are distinct.
The second line contains $n$ space-separated integers $p_{1},p_{2},...,p_{n}$ ( $1<=p_{i}<=n$ ) — the elements of the permutation. It is guaranteed that all elements are distinct.
输出格式
Print two integers: the minimum deviation of cyclic shifts of permutation $p$ and the id of such shift. If there are multiple solutions, print any of them.
输入输出样例
输入 #1
3 1 2 3
输出 #1
0 0
输入 #2
3 2 3 1
输出 #2
0 1
输入 #3
3 3 2 1
输出 #3
2 1
In the first sample test the given permutation $p$ is the identity permutation, that's why its deviation equals to $0$ , the shift id equals to $0$ as well.
In the second sample test the deviation of $p$ equals to $4$ , the deviation of the $1$ -st cyclic shift $(1,2,3)$ equals to $0$ , the deviation of the $2$ -nd cyclic shift $(3,1,2)$ equals to $4$ , the optimal is the $1$ -st cyclic shift.
In the third sample test the deviation of $p$ equals to $4$ , the deviation of the $1$ -st cyclic shift $(1,3,2)$ equals to $2$ , the deviation of the $2$ -nd cyclic shift $(2,1,3)$ also equals to $2$ , so the optimal are both $1$ -st and $2$ -nd cyclic shifts.
In the second sample test the deviation of $p$ equals to $4$ , the deviation of the $1$ -st cyclic shift $(1,2,3)$ equals to $0$ , the deviation of the $2$ -nd cyclic shift $(3,1,2)$ equals to $4$ , the optimal is the $1$ -st cyclic shift.
In the third sample test the deviation of $p$ equals to $4$ , the deviation of the $1$ -st cyclic shift $(1,3,2)$ equals to $2$ , the deviation of the $2$ -nd cyclic shift $(2,1,3)$ also equals to $2$ , so the optimal are both $1$ -st and $2$ -nd cyclic shifts.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted