A14137 | Shifting Stacks
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
You have $n$ stacks of blocks. The $i$ -th stack contains $h_i$ blocks and it's height is the number of blocks in it. In one move you can take a block from the $i$ -th stack (if there is at least one block) and put it to the $i + 1$ -th stack. Can you make the sequence of heights strictly increasing?
Note that the number of stacks always remains $n$ : stacks don't disappear when they have $0$ blocks.
Note that the number of stacks always remains $n$ : stacks don't disappear when they have $0$ blocks.
输入格式
First line contains a single integer $t$ $(1 \leq t \leq 10^4)$ — the number of test cases.
The first line of each test case contains a single integer $n$ $(1 \leq n \leq 100)$ . The second line of each test case contains $n$ integers $h_i$ $(0 \leq h_i \leq 10^9)$ — starting heights of the stacks.
It's guaranteed that the sum of all $n$ does not exceed $10^4$ .
The first line of each test case contains a single integer $n$ $(1 \leq n \leq 100)$ . The second line of each test case contains $n$ integers $h_i$ $(0 \leq h_i \leq 10^9)$ — starting heights of the stacks.
It's guaranteed that the sum of all $n$ does not exceed $10^4$ .
输出格式
For each test case output YES if you can make the sequence of heights strictly increasing and NO otherwise.
You may print each letter in any case (for example, YES, Yes, yes, yEs will all be recognized as positive answer).
You may print each letter in any case (for example, YES, Yes, yes, yEs will all be recognized as positive answer).
输入输出样例
输入 #1
6 2 1 2 2 1 0 3 4 4 4 2 0 0 3 0 1 0 4 1000000000 1000000000 1000000000 1000000000
输出 #1
YES YES YES NO NO YES
In the first test case there is no need to make any moves, the sequence of heights is already increasing.
In the second test case we need to move one block from the first stack to the second. Then the heights become $0$ $1$ .
In the third test case we could move one block from the first stack to the second and then from the second to the third, which would make the heights $3$ $4$ $5$ .
In the fourth test case we can't make a move, but the sequence is not increasing, so the answer is NO.
In the fifth test case we can only make one move (from the second to the third stack), which would make the heights $0$ $0$ $1$ . Both $0$ $1$ $0$ and $0$ $0$ $1$ are not increasing sequences, so the answer is NO.
In the second test case we need to move one block from the first stack to the second. Then the heights become $0$ $1$ .
In the third test case we could move one block from the first stack to the second and then from the second to the third, which would make the heights $3$ $4$ $5$ .
In the fourth test case we can't make a move, but the sequence is not increasing, so the answer is NO.
In the fifth test case we can only make one move (from the second to the third stack), which would make the heights $0$ $0$ $1$ . Both $0$ $1$ $0$ and $0$ $0$ $1$ are not increasing sequences, so the answer is NO.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted