A16299 | Chip and Ribbon
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
There is a ribbon divided into $n$ cells, numbered from $1$ to $n$ from left to right. Initially, an integer $0$ is written in each cell.
Monocarp plays a game with a chip. The game consists of several turns. During the first turn, Monocarp places the chip in the $1$ -st cell of the ribbon. During each turn except for the first turn, Monocarp does exactly one of the two following actions:
- move the chip to the next cell (i. e. if the chip is in the cell $i$ , it is moved to the cell $i+1$ ). This action is impossible if the chip is in the last cell;
- choose any cell $x$ and teleport the chip into that cell. It is possible to choose the cell where the chip is currently located.
At the end of each turn, the integer written in the cell with the chip is increased by $1$ .
Monocarp's goal is to make some turns so that the $1$ -st cell contains the integer $c_1$ , the $2$ -nd cell contains the integer $c_2$ , ..., the $n$ -th cell contains the integer $c_n$ . He wants to teleport the chip as few times as possible.
Help Monocarp calculate the minimum number of times he has to teleport the chip.
Monocarp plays a game with a chip. The game consists of several turns. During the first turn, Monocarp places the chip in the $1$ -st cell of the ribbon. During each turn except for the first turn, Monocarp does exactly one of the two following actions:
- move the chip to the next cell (i. e. if the chip is in the cell $i$ , it is moved to the cell $i+1$ ). This action is impossible if the chip is in the last cell;
- choose any cell $x$ and teleport the chip into that cell. It is possible to choose the cell where the chip is currently located.
At the end of each turn, the integer written in the cell with the chip is increased by $1$ .
Monocarp's goal is to make some turns so that the $1$ -st cell contains the integer $c_1$ , the $2$ -nd cell contains the integer $c_2$ , ..., the $n$ -th cell contains the integer $c_n$ . He wants to teleport the chip as few times as possible.
Help Monocarp calculate the minimum number of times he has to teleport the chip.
输入格式
The first line contains one integer $t$ ( $1 \le t \le 10^4$ ) — the number of test cases.
Each test case consists of two lines:
- the first line contains one integer $n$ ( $1 \le n \le 2 \cdot 10^5$ );
- the second line contains $n$ integers $c_1, c_2, \dots, c_n$ ( $0 \le c_i \le 10^9$ ; $c_1 \ge 1$ ).
It can be shown that under these constraints, it is always possible to make a finite amount of turns so that the integers in the cells match the sequence $c_1, c_2, \dots, c_n$ .
Additional constraint on the input: the sum of values of $n$ over all test cases does not exceed $2 \cdot 10^5$ .
Each test case consists of two lines:
- the first line contains one integer $n$ ( $1 \le n \le 2 \cdot 10^5$ );
- the second line contains $n$ integers $c_1, c_2, \dots, c_n$ ( $0 \le c_i \le 10^9$ ; $c_1 \ge 1$ ).
It can be shown that under these constraints, it is always possible to make a finite amount of turns so that the integers in the cells match the sequence $c_1, c_2, \dots, c_n$ .
Additional constraint on the input: the sum of values of $n$ over all test cases does not exceed $2 \cdot 10^5$ .
输出格式
For each test case, print one integer — the minimum number of times Monocarp has to teleport the chip.
输入输出样例
输入 #1
4 4 1 2 2 1 5 1 0 1 0 1 5 5 4 3 2 1 1 12
输出 #1
1 2 4 11
In the first test case of the example, Monocarp can perform the turns as follows:
- place the chip in the $1$ -st cell; the numbers in the cells are $[1, 0, 0, 0]$ ;
- move the chip to the next ( $2$ -nd) cell; the numbers in the cells are $[1, 1, 0, 0]$ ;
- move the chip to the next ( $3$ -rd) cell; the numbers in the cells are $[1, 1, 1, 0]$ ;
- teleport the chip to the $2$ -nd cell; the numbers in the cells are $[1, 2, 1, 0]$ ;
- move the chip to the next ( $3$ -rd) cell; the numbers in the cells are $[1, 2, 2, 0]$ ;
- move the chip to the next ( $4$ -th) cell; the numbers in the cells are $[1, 2, 2, 1]$ .
- place the chip in the $1$ -st cell; the numbers in the cells are $[1, 0, 0, 0]$ ;
- move the chip to the next ( $2$ -nd) cell; the numbers in the cells are $[1, 1, 0, 0]$ ;
- move the chip to the next ( $3$ -rd) cell; the numbers in the cells are $[1, 1, 1, 0]$ ;
- teleport the chip to the $2$ -nd cell; the numbers in the cells are $[1, 2, 1, 0]$ ;
- move the chip to the next ( $3$ -rd) cell; the numbers in the cells are $[1, 2, 2, 0]$ ;
- move the chip to the next ( $4$ -th) cell; the numbers in the cells are $[1, 2, 2, 1]$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted