题目链接:http://codeforces.com/problemset/problem/676/B
题意:有一个n层的酒杯架,每层有n个酒杯,样子跟图片一样。一个人倒酒t秒,一秒倒能装满一杯的酒,求t秒后有多少个满酒杯
思路:
暴力大法好
枚举一下每层的酒杯就好了
#include<stdio.h>
#include<string.h>
#include<iostream>
#include<algorithm>
#include<math.h>
#include<queue>
#include<stack>
#include<string>
#include<vector>
#include<map>
#include<set>
using namespace std;
#define lowbit(x) (x&(-x))
typedef long long LL;
const int maxn = 10005;
const int inf=(1<<28)-1;
int C[15][15];
double A[15][15];
int n;
void dfs(int pos)
{
if(pos==n+1) return ;
int x=pos;
for(int i=1;i<=pos;++i)
{
int y=i;
if(A[x][y])
{
if(C[x][y]==0&&A[x][y]>=1)
{
C[x][y]=1;
A[x][y]-=1;
}
if(C[x][y]&&A[x][y]!=0)
{
if(y==1)
{
A[x+1][y]+=A[x][y]/2;
}
else A[x+1][y-1]+=A[x][y]/2;
A[x+1][y+1]+=A[x][y]/2;
A[x][y]=0;
}
}
}
dfs(pos+1);
}
int main()
{
A[1][1]=1;
int t;
scanf("%d%d",&n,&t);
A[1][1]=t;
dfs(1);
int ans=0;
for(int i=1;i<=n;++i)
for(int j=1;j<=i;++j)
ans+=C[i][j];
printf("%d\n",ans);
return 0;
}