zoukankan      html  css  js  c++  java
  • (light OJ 1005) Rooks dp

    Time Limit: 1 second(s) Memory Limit: 32 MB

    A rook is a piece used in the game of chess which is played on a board of square grids. A rook can only move vertically or horizontally from its current position and two rooks attack each other if one is on the path of the other. In the following figure, the dark squares represent the reachable locations for rook R1 from its current position. The figure also shows that the rook R1 and R2 are in attacking positions where R1 and R3 are not. R2 and R3 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 rooks on an n x n chessboard so that no two of them are in attacking positions.

    Input

    Input starts with an integer T (≤ 350), denoting the number of test cases.

    Each case contains two integers n (1 ≤ n ≤ 30) and k (0 ≤ k ≤ n2).

    Output

    For each case, print the case number and total number of ways one can put the given number of rooks 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 1017.

    Sample Input

    Output for Sample Input

    8

    1 1

    2 1

    3 1

    4 1

    4 2

    4 3

    4 4

    4 5

    Case 1: 1

    Case 2: 4

    Case 3: 9

    Case 4: 16

    Case 5: 72

    Case 6: 96

    Case 7: 24

    Case 8: 0

     
     
     
     
    dp[n][k] 可以由三种状态转化而来:
    1.  第 n 层不放象棋  dp[n-1][k]
    2.  第 n 层放一个象棋, 可以放象棋的位置为图中蓝色的位置,即(2*(i-j)+1)*dp[i-1][j-1]
    3.  第 n 层放两个象棋, 可以放象棋的位置为图中浅蓝色的位置 (i-j+1)*(i-j+1)*dp[i-1][j-2]
     
    #include <iostream>
    #include <cstdio>
    #include <cstring>
    #include <algorithm>
    
    using namespace std;
    
    #define N 1100
    
    #define met(a,b) (memset(a,b,sizeof(a)))
    typedef long long LL;
    
    LL dp[N][N];
    
    ///dp[n][k] 代表前n*n的矩阵中,放k个象棋的方法数
    
    void Init()
    {
        int i, j;
    
        for(i=0; i<=30; i++)
            dp[i][0] = 1;
    
        for(i=1; i<=30; i++)
        {
            for(j=1; j<=i; j++)
            {
                dp[i][j] += dp[i-1][j];
                dp[i][j] += (2*(i-j)+1)*dp[i-1][j-1];
                if(j>=2)
                dp[i][j] += (i-j+1)*(i-j+1)*dp[i-1][j-2];
           }
        }
    
    }
    
    int main()
    {
        int T, iCase=1;
        scanf("%d", &T);
    
        Init();
        while(T--)
        {
            int n, k;
    
            scanf("%d%d", &n, &k);
    
            printf("Case %d: %lld
    ", iCase++, dp[n][k]);
        }
        return 0;
    }
  • 相关阅读:
    SecureCRT上传文件到服务器 CentOS举例
    MongoDB关于replSet的配置概述(一主二从)
    MongoDB的安装与卸载与再安装……
    zip在python中的使用方法
    try,raise等的python的使用方法介绍
    【转】jQuery给动态添加的元素绑定事件的方法
    sublime的纵向操作(列操作)原来这么用
    Python 利用*args和**kwargs解决函数遇到不确定数量参数问题
    Python 函数式编程介绍
    Python list可以做什么
  • 原文地址:https://www.cnblogs.com/YY56/p/5526029.html
Copyright © 2011-2022 走看看