CF892B.Wrath
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Hands that shed innocent blood!
There are n guilty people in a line, the i -th of them holds a claw with length Li . The bell rings and every person kills some of people in front of him. All people kill others at the same time. Namely, the i -th person kills the j -th person if and only if j<i and j>=i−Li .
You are given lengths of the claws. You need to find the total number of alive people after the bell rings.
输入格式
The first line contains one integer n ( 1<=n<=106 ) — the number of guilty people.
Second line contains n space-separated integers L1,L2,...,Ln ( 0<=Li<=109 ), where Li is the length of the i -th person's claw.
输出格式
Print one integer — the total number of alive people after the bell rings.
输入输出样例
输入#1
4 0 1 0 10
输出#1
1
输入#2
2 0 0
输出#2
2
输入#3
10 1 1 3 0 0 0 2 1 0 3
输出#3
3
说明/提示
In first sample the last person kills everyone in front of him.