zoukankan      html  css  js  c++  java
  • Little Bishops uva861

    Little Bishops

    A bishop is a piece used in the game of chess which is played on a board of square grids. A bishop can only move diagonally from its current position and two bishops attack each other if one is on the path of the other. In the following figure, the dark squares represent the reachable locations for bishop B1 form its current position.  The figure also shows that the bishops B1 and B2 are in attacking positions whereas B1 andB3 are not. B2 and B3 are also in non-attacking positions.

     

    Now, given two numbers n and k, your job is to determine the number of ways one can put k bishops on an n × n chessboard so that no two of them are in attacking positions.

    Input

     The input file may contain multiple test cases. Each test case occupies a single line in the input file and contains two integers n (1 ≤ n ≤ 8) and k(0 ≤ k ≤ n2).

    A test case containing two zeros for n and k terminates the input and you won’t need to process this particular input.

    Output

    For each test case i

    #include"iostream"
    #include"cstring"
    #include"algorithm"
    using namespace std;
    const int N=8;
    int b[N+1],w[N+1],rb[N+1][65],rw[N+1][65];
    void init_chessboard(int n)
    {
        memset(b,0,sizeof(b));
        memset(w,0,sizeof(w));
        for(int i=1;i<=n;i++)
          for(int j=1;j<=n;j++)
        {
            if((i+j)&1)
               w[(i+j)>>1]++;
            else
               b[(i+j)>>1]++;
        } 
    }
    void bishops(int n,int k,int c[N+1],int R[N+1][65])
    {
        for(int i=0;i<=n;i++)
          R[i][0]=1;
        for(int j=1;j<=k;j++)
            R[0][j]=0;
        for(int i=1;i<=n;i++)
          for(int j=1;j<=c[i];j++)
            R[i][j]=R[i-1][j]+R[i-1][j-1]*(c[i]-j+1);
    }
    int main()
    {
        int n,k,ans;
        while(scanf("%d%d",&n,&k)!=EOF)
        {
            if(n==0&&k==0)
              break;
            init_chessboard(n);
            sort(b+1,b+n+1);
            sort(w+1,w+n);
            bishops(n,k,b,rb);
            bishops(n-1,k,w,rw);
            ans=0;
            for(int i=0;i<=k;i++)
              ans+=rb[n][i]*rw[n-1][k-i];
            printf("%d
    ",ans);
        }
        return 0;
    }

    n the input print a line containing the total number of ways one can put the given number of bishops on a chessboard of the given size so that no two of them are in attacking positions. You may safely assume that this number will be less than 1015.

     

    Sample Input
    8 6
    4 4
    0 0

     

    Sample Output
    5599888
    260

  • 相关阅读:
    centos 查看版本(转)
    防火墙内设置FileZilla Server注意事项
    mycat读写分离与主从切换
    用mycat做读写分离:基于 MySQL主从复制
    mysql处理海量数据时的一些优化查询速度方法
    CentOS下LVS DR模式负载均衡配置详解
    Linux清除arp缓存
    扫描局域网内所有主机和MAC地址的Shell脚本
    Windows+Python 3.6环境下安装PyQt4
    Python 爬虫-豆瓣读书
  • 原文地址:https://www.cnblogs.com/767355675hutaishi/p/3829594.html
Copyright © 2011-2022 走看看