sgu-241 The United Fields of Chessboardia

题目大意:

给你一个N?N和M?M的棋盘,他们如图摆放:

左下角是N?N,然后要你求出在这样一个棋盘上放置K个车的方案数。

PS:车是可以隔空攻击的,比如两个3?3的棋盘,他们平行放置,然后中间没有相连,但是左边的棋盘中的车是可以攻击到右边棋盘的!!!

解题思路:

首先根据对称性,我们可以有:if(W<H) swap(W,H);

然后由于隔空也可以攻击,我们可以有:

if(W>N) W=N;
if(H>N) H=N;

这样我们就可以做到少一点情况了。

然后我们会发现只有这么几种情况:

1.M?M的被N?N包含,这很好做吧,就是在N?N的棋盘中放K个车,直接排列组合一下就行了。

2.(图片来自这里)

这种情况下我们就可以先确定右边突出来的部分怎么放,然后在确定左边的N?N的怎么放

3.

重点是这种情况,我们可以将其分成7块,就根据这两个棋盘的边界可以把其分成7个块,然后我们dp就行了。但是由于本人水平底下,然后又要写高精度,然后我的程序就光荣的MLE了。。。。。。。。。然后经过我的观察发现,极端情况下每个块的放置的车的个数不能超过20个,然后所放置的总和不能超过40个,然后我就果断枚举每一个块应该放置多少个车,最后排列组合计算一下就行了。

具体如何排列组合请看代码。

AC代码:

#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <iostream>

#define C(a,b) (fac[(a)]/fac[(b)]/fac[(a)-(b)])
#define P(a,b) (fac[(a)]/fac[(a)-(b)])

const int Mod=10;

using namespace std;

int N,M,W,H,K;

struct gjd_
{
    long long cnmbdctr[600];
};

long long fac[30];
struct gjd_ ans={0};
int G[10]={0};

struct gjd_ operator * (struct gjd_ a1,long long a2)
{
    if(a2%10==0 && a2!=10)
        return a1*(a2/10)*10;
    struct gjd_ bb=a1;
    for(int i=1;i<=bb.cnmbdctr[0];i++)
    {
        bb.cnmbdctr[i]*=a2;
        if(bb.cnmbdctr[i-1]>=Mod && i!=1)
        {
            bb.cnmbdctr[i]+=bb.cnmbdctr[i-1]/Mod;
            bb.cnmbdctr[i-1]%=Mod;
        }
    }
    for(int i=bb.cnmbdctr[0];bb.cnmbdctr[i]>=Mod;bb.cnmbdctr[0]++,i++)
        bb.cnmbdctr[i+1]+=bb.cnmbdctr[i]/Mod,bb.cnmbdctr[i]%=Mod;
    return bb;
}

struct gjd_ operator + (struct gjd_ a1,struct gjd_ a2)
{
    struct gjd_ bb={0};
    bb.cnmbdctr[0]=max(a1.cnmbdctr[0],a2.cnmbdctr[0]);
    for(int i=1;i<=bb.cnmbdctr[0];i++)
    {
        bb.cnmbdctr[i]+=a1.cnmbdctr[i]+a2.cnmbdctr[i];
        if(bb.cnmbdctr[i]>=Mod)
        {
            bb.cnmbdctr[i+1]+=bb.cnmbdctr[i]/Mod;
            bb.cnmbdctr[i]%=Mod;
            if(i==bb.cnmbdctr[0])
                bb.cnmbdctr[0]++;
        }
    }
    return bb;
}

void prt(struct gjd_ a1)
{
    printf("%d",(int)a1.cnmbdctr[a1.cnmbdctr[0]]);
    for(int i=a1.cnmbdctr[0]-1;i>=1;i--)
        printf("%d",(int)a1.cnmbdctr[i]);
    return;
}

void counts()
{
    struct gjd_ add={1,1};
    add=add*C(W,G[1]);
    add=add*P(H,G[1])*C(W-G[1],G[2])*P(N-H,G[2]);
    add=add*C(H-G[1],G[3])*P(N-W,G[3])*C(N-W-G[3],G[4])*P(N-H-G[2],G[4]);
    add=add*C(N-W-G[3]-G[4],G[5])*P(M-(N-H),G[5])*C(N-H-G[2]-G[4],G[6])*P(M-(N-W),G[6]);
    add=add*C(M-(N-H)-G[5],G[7])*P(M-(N-W)-G[6],G[7]);
    ans=ans+add;
    return;
}

void dfs(int cnt,int re)
{
    int Max;
    if(cnt==7)
    {
        Max=min(M-(N-H)-G[5],M-(N-W)-G[6]);
        if(re<=Max)
        {
            G[7]=re;
            counts();
        }
        return;
    }
    else if(cnt==1)
        Max=min(min(W,H),re);
    else if(cnt==2)
        Max=min(min(W-G[1],N-H),re);
    else if(cnt==3)
        Max=min(min(H-G[1],N-W),re);
    else if(cnt==4)
        Max=min(min(N-W-G[3],N-H-G[2]),re);
    else if(cnt==5)
        Max=min(min(N-W-G[3]-G[4],M-(N-H)),re);
    else if(cnt==6)
        Max=min(min(N-H-G[2]-G[4],M-(N-W)),re);
    for(int i=0;i<=Max;i++)
    {
        G[cnt]=i;
        dfs(cnt+1,re-i);
    }
    return;
}

int main()
{
    scanf("%d%d%d%d%d",&N,&M,&W,&H,&K);
    fac[0]=1;
    for(int i=1;i<=20;i++) fac[i]=fac[i-1]*i;
    if(W<H) swap(W,H);
    if(W>N) W=N;
    if(H>N) H=N;
    if(N>=M+W)
    {
        if(K<=N)
        {
            ans.cnmbdctr[0]=ans.cnmbdctr[1]=1;
            ans=ans*C(N,K);
            ans=ans*P(N,K);
        }
        prt(ans);
    }
    else if(N>=M+H)
    {
        if(K>N) cout<<0<<endl;
        else
        {
            int MM=M+W-N;
            for(int i=0;i<=min(MM,K);i++)
            {
                struct gjd_ gg={1,1};
                gg=gg*C(M,i);gg=gg*P(MM,i);gg=gg*C(N-i,K-i);gg=gg*P(N,K-i);
                ans=ans+gg;
            }
            prt(ans);
        }
    }
    else
    {
        dfs(1,K);
        prt(ans);
    }
    return 0;
}
时间: 2024-10-24 03:42:44

sgu-241 The United Fields of Chessboardia的相关文章

转 jquery插件--241个jquery插件—jquery插件大全

241个jquery插件—jquery插件大全 jquery插件jqueryautocompleteajaxjavascriptcoldfusion jQuery由美国人John Resig创建,至今已吸引了来自世界各地的众多javascript高手加入其team. jQuery是继prototype之后又一个优秀的Javascrīpt框架.其经典的Slogan是“Write Less, Do more”(写更少的代码,做更多的事情).jQuery是轻量级的js库(压缩后只有21k) ,这是其它

Poj 3254 Corn Fields(状态压缩)

Corn Fields Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 8291   Accepted: 4409 Description Farmer John has purchased a lush new rectangular pasture composed of M by N (1 ≤ M ≤ 12; 1 ≤ N ≤ 12) square parcels. He wants to grow some yumm

BZOJ1725: [Usaco2006 Nov]Corn Fields牧场的安排

1725: [Usaco2006 Nov]Corn Fields牧场的安排 Time Limit: 5 Sec  Memory Limit: 64 MBSubmit: 400  Solved: 290[Submit][Status] Description Farmer John新买了一块长方形的牧场,这块牧场被划分成M列N行(1<=M<=12; 1<=N<=12),每一格都是一块正方形的土地.FJ打算在牧场上的某几格土地里种上美味的草,供他的奶牛们享用.遗憾的是,有些土地相当的贫

POJ 3254 Corn Fields 状态压缩DP (C++/Java)

http://poj.org/problem?id=3254 题目大意: 一个农民有n行m列的地方,每个格子用1代表可以种草地,而0不可以.放牛只能在有草地的,但是相邻的草地不能同时放牛, 问总共有多少种方法. 思路: 状态压缩的DP. 可以用二进制数字来表示放牧情况并判断该状态是否满足条件. 这题的限制条件有两个: 1.草地限制. 2.相邻限制. 对于草地限制,因为输入的时候1是可以种草地的. 以"11110"草地分析,就只有最后一个是不可以种草的.取反后得00001  .(为啥取反

解决mysqldump备份报错: Couldn&#39;t execute &#39;SHOW FIELDS FROM Unknown error 1356

服务器环境: [[email protected] mysql]# cat /etc/redhat-releaseCentOS Linux release 7.3.1611 (Core) [[email protected] mysql]# uname -aLinux localhost.localdomain 3.10.0-514.21.1.el7.x86_64 #1 SMP Thu May 25 17:04:51 UTC 2017 x86_64 x86_64 x86_64 GNU/Linux

LeetCode 241. Different Ways to Add Parentheses

241. Different Ways to Add Parentheses Add to List Description Submission Solutions Total Accepted: 38849 Total Submissions: 92740 Difficulty: Medium Contributors: Admin Given a string of numbers and operators, return all possible results from comput

Consolidate data by using multiple page fields

https://support.office.com/en-us/article/Consolidate-multiple-worksheets-into-one-PivotTable-report-3AE257D2-CA94-49FF-A481-E9FC8ADEEEB5 You can create multiple page fields and assign your own item names for each source range. This lets you create pa

(寒假集训)Watering the Fields (最小生成树)

Watering the Fields 时间限制: 1 Sec  内存限制: 64 MB提交: 26  解决: 10[提交][状态][讨论版] 题目描述 Due to a lack of rain, Farmer John wants to build an irrigation system to send water between his N fields (1 <= N <= 2000). Each field i is described by a distinct point (x

(转)Image Segmentation with Tensorflow using CNNs and Conditional Random Fields

Daniil's blog Machine Learning and Computer Vision artisan. About/ Blog/ Image Segmentation with Tensorflow using CNNs and Conditional Random Fields Tensorflow and TF-Slim | Dec 18, 2016 A post showing how to perform Image Segmentation with a recentl