Luogu2917_ [USACO08NOV]奶牛混合起来Mixed Up Cows_KEY

Posted Cptraser

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Luogu2917_ [USACO08NOV]奶牛混合起来Mixed Up Cows_KEY相关的知识,希望对你有一定的参考价值。

题目传送门

看到数据范围就果断装压。

设f[i][j]表示i状态下最后一个数字为a[j]。

code:

 

#include <cstdio>
using namespace std;

int N,K,a[17];
long long f[1<<16][17];

inline int abs(int x){return x>0?x:-x;}

int main()
{
    scanf("%d%d",&N,&K);
    register int i,j,k;
        for(i=1;i<=N;i++)scanf("%d",&a[i]),f[1<<i-1][i]=1ll;
        for(i=0;i<1<<N;i++){
            for(j=1;j<=N;j++){
                if(i&(1<<j-1)){
                    for(k=1;k<=N;k++){
                        if(!(i&(1<<k-1)) && abs(a[k]-a[j])>K){
                            f[i|(1<<k-1)][k]+=f[i][j];
                        }
                    }
                }
            }
        }
    long long ans=0;
        for(i=1;i<=N;i++)ans+=(long long)f[(1<<N)-1][i];
    printf("%lld",ans);
    return 0;
}

 

以上是关于Luogu2917_ [USACO08NOV]奶牛混合起来Mixed Up Cows_KEY的主要内容,如果未能解决你的问题,请参考以下文章

BZOJ1229 & 洛谷2917:[USACO2008 NOV]toy 玩具 & 洛谷4480:[BJWC2018]餐巾计划问题——题解

BZOJ_2058_[Usaco2010 Nov]Cow Photographs_逆序对

P2915 [USACO08NOV]奶牛混合起来Mixed Up Cows

洛谷 P2915 [USACO08NOV]奶牛混合起来Mixed Up Cows

BZOJ_[usaco2007 Nov]relays 奶牛接力跑_离散化+倍增弗洛伊德

[USACO08NOV]奶牛混合起来Mixed Up Cows