A12612 | Increasing by Modulo
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Toad Zitz has an array of integers, each integer is between $0$ and $m-1$ inclusive. The integers are $a_1, a_2, \ldots, a_n$ .
In one operation Zitz can choose an integer $k$ and $k$ indices $i_1, i_2, \ldots, i_k$ such that $1 \leq i_1 < i_2 < \ldots < i_k \leq n$ . He should then change $a_{i_j}$ to $((a_{i_j}+1) \bmod m)$ for each chosen integer $i_j$ . The integer $m$ is fixed for all operations and indices.
Here $x \bmod y$ denotes the remainder of the division of $x$ by $y$ .
Zitz wants to make his array non-decreasing with the minimum number of such operations. Find this minimum number of operations.
In one operation Zitz can choose an integer $k$ and $k$ indices $i_1, i_2, \ldots, i_k$ such that $1 \leq i_1 < i_2 < \ldots < i_k \leq n$ . He should then change $a_{i_j}$ to $((a_{i_j}+1) \bmod m)$ for each chosen integer $i_j$ . The integer $m$ is fixed for all operations and indices.
Here $x \bmod y$ denotes the remainder of the division of $x$ by $y$ .
Zitz wants to make his array non-decreasing with the minimum number of such operations. Find this minimum number of operations.
输入格式
The first line contains two integers $n$ and $m$ ( $1 \leq n, m \leq 300\,000$ ) — the number of integers in the array and the parameter $m$ .
The next line contains $n$ space-separated integers $a_1, a_2, \ldots, a_n$ ( $0 \leq a_i < m$ ) — the given array.
The next line contains $n$ space-separated integers $a_1, a_2, \ldots, a_n$ ( $0 \leq a_i < m$ ) — the given array.
输出格式
Output one integer: the minimum number of described operations Zitz needs to make his array non-decreasing. If no operations required, print $0$ .
It is easy to see that with enough operations Zitz can always make his array non-decreasing.
It is easy to see that with enough operations Zitz can always make his array non-decreasing.
输入输出样例
输入 #1
5 3 0 0 0 1 2
输出 #1
0
输入 #2
5 7 0 6 1 3 2
输出 #2
1
In the first example, the array is already non-decreasing, so the answer is $0$ .
In the second example, you can choose $k=2$ , $i_1 = 2$ , $i_2 = 5$ , the array becomes $[0,0,1,3,3]$ . It is non-decreasing, so the answer is $1$ .
In the second example, you can choose $k=2$ , $i_1 = 2$ , $i_2 = 5$ , the array becomes $[0,0,1,3,3]$ . It is non-decreasing, so the answer is $1$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted