Codeforces 369D. Valera and Fools


D. Valera and Fools
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

One fine morning, n fools lined up in a row. After that, they numbered each other with numbers from 1 to n, 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 k bullets and a pistol. In addition, the fool number i has probability of pi (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 j (0 ≤ j ≤ k) there is a nonzero probability that after j rounds of the fun this situation will occur.

Valera knows numbers p1, p2, ..., pn and k. Help Valera determine the number of distinct possible situations.

Input

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

The second line contains n integers p1, p2, ..., pn (0 ≤ pi ≤ 100) — the given probabilities (in percent).

Output

Print a single number — the answer to the problem.

Sample test(s)
input
3 3
50 50 50
output
7
input
1 1
100
output
1
input
2 1
100 100
output
2
input
3 3
0 0 0
output
1
Note

In the first sample, any situation is possible, except for situation {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} (after zero rounds) and the "empty" situation {} (after one round).

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


 概率都是假的,只有0,100,其它 三种情况。。。。

每一轮,后面的都打第一个,第一个回头打第二个。。。。只要记录开头的两个就可以了


#include <iostream>
#include <cstdio>
#include <algorithm>

using namespace std;

const int maxn=4000;

bool vis[maxn][maxn];
int n,k,p[maxn],sp[maxn],ans=0;

void dfs(int A,int B,int t)
{
    if(vis[A][B]) return ;
    vis[A][B]=true; ans++;
    if(t==k||B>n) return;
    int p1=p[A],p2=sp[B];
    if(p1)
    {
        if(p2) dfs(B+1,B+2,t+1);
        if(p2!=100) dfs(A,B+1,t+1);
    }
    if(p1!=100&&p2) dfs(B,B+1,t+1);
}

int main()
{
    scanf("%d%d",&n,&k);
    for(int i=1;i<=n;i++) scanf("%d",p+i);
    for(int i=n;i>=1;i--) sp[i]=max(sp[i+1],p[i]);
    dfs(1,2,0);
    printf("%d\n",ans);
    return 0;
}




  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值