CF369D.Valera and Fools

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

One fine morning, nn fools lined up in a row. After that, they numbered each other with numbers from 11 to nn , inclusive. Each fool got a unique number. The fools decided not to change their numbers before the end of the fun.

Every fool has exactly kk bullets and a pistol. In addition, the fool number ii has probability of pip_{i} (in percent) that he kills the fool he shoots at.

The fools decided to have several rounds of the fun. Each round of the fun looks like this: each currently living fool shoots at another living fool with the smallest number (a fool is not stupid enough to shoot at himself). All shots of the round are perfomed at one time (simultaneously). If there is exactly one living fool, he does not shoot.

Let's define a situation as the set of numbers of all the living fools at the some time. We say that a situation is possible if for some integer number jj ( 0<=j<=k0<=j<=k ) there is a nonzero probability that after jj rounds of the fun this situation will occur.

Valera knows numbers p1,p2,...,pnp_{1},p_{2},...,p_{n} and kk . Help Valera determine the number of distinct possible situations.

输入格式

The first line contains two integers n,kn,k ( 1<=n,k<=30001<=n,k<=3000 ) — the initial number of fools and the number of bullets for each fool.

The second line contains nn integers p1,p2,...,pnp_{1},p_{2},...,p_{n} ( 0<=pi<=1000<=p_{i}<=100 ) — the given probabilities (in percent).

输出格式

Print a single number — the answer to the problem.

输入输出样例

  • 输入#1

    3 3
    50 50 50
    

    输出#1

    7
    
  • 输入#2

    1 1
    100
    

    输出#2

    1
    
  • 输入#3

    2 1
    100 100
    

    输出#3

    2
    
  • 输入#4

    3 3
    0 0 0
    

    输出#4

    1
    

说明/提示

In the first sample, any situation is possible, except for situation 1,2{1,2} .

In the second sample there is exactly one fool, so he does not make shots.

In the third sample the possible situations are 1,2{1,2} (after zero rounds) and the "empty" situation {} (after one round).

In the fourth sample, the only possible situation is 1,2,3{1,2,3} .

首页