CF1453F.Even Harder
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Gildong is now developing a puzzle game. The puzzle consists of n platforms numbered from 1 to n . The player plays the game as a character that can stand on each platform and the goal of the game is to move the character from the 1 -st platform to the n -th platform.
The i -th platform is labeled with an integer ai ( 0≤ai≤n−i ). When the character is standing on the i -th platform, the player can move the character to any of the j -th platforms where i+1≤j≤i+ai . If the character is on the i -th platform where ai=0 and i=n , the player loses the game.
Since Gildong thinks the current game is not hard enough, he wants to make it even harder. He wants to change some (possibly zero) labels to 0 so that there remains exactly one way to win. He wants to modify the game as little as possible, so he's asking you to find the minimum number of platforms that should have their labels changed. Two ways are different if and only if there exists a platform the character gets to in one way but not in the other way.
输入格式
Each test contains one or more test cases. The first line contains the number of test cases t ( 1≤t≤500 ).
Each test case contains two lines. The first line of each test case consists of an integer n ( 2≤n≤3000 ) — the number of platforms of the game.
The second line of each test case contains n integers. The i -th integer is ai ( 0≤ai≤n−i ) — the integer of the i -th platform.
It is guaranteed that:
- For each test case, there is at least one way to win initially.
- The sum of n in all test cases doesn't exceed 3000 .
输出格式
For each test case, print one integer — the minimum number of different labels that should be changed to 0 so that there remains exactly one way to win.
输入输出样例
输入#1
3 4 1 1 1 0 5 4 3 2 1 0 9 4 1 4 2 1 0 2 1 0
输出#1
0 3 2
说明/提示
In the first case, the player can only move to the next platform until they get to the 4 -th platform. Since there is already only one way to win, the answer is zero.
In the second case, Gildong can change a2 , a3 , and a4 to 0 so that the game becomes 4 0 0 0 0 . Now the only way the player can win is to move directly from the 1 -st platform to the 5 -th platform.
In the third case, Gildong can change a2 and a8 to 0 , then the only way to win is to move in the following way: 1 – 3 – 7 – 9 .