CF892B.Wrath

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Hands that shed innocent blood!

There are nn guilty people in a line, the ii -th of them holds a claw with length LiL_{i} . The bell rings and every person kills some of people in front of him. All people kill others at the same time. Namely, the ii -th person kills the jj -th person if and only if j<ij<i and j>=iLij>=i-L_{i} .

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 nn ( 1<=n<=1061<=n<=10^{6} ) — the number of guilty people.

Second line contains nn space-separated integers L1,L2,...,LnL_{1},L_{2},...,L_{n} ( 0<=Li<=1090<=L_{i}<=10^{9} ), where LiL_{i} is the length of the ii -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.

首页