BZOJ-1072: [SCOI2007]排列perm(状压DP

作者: AmadeusChan | 来源:发表于2018-11-19 18:16 被阅读0次

题目:http://www.lydsy.com/JudgeOnline/problem.php?id=1072

状压DP搞一搞,记得弄掉重复数字导致的重复方案数。。。

代码:

#include <cstdio>
#include <algorithm>
#include <cstring>
 
using namespace std ;
 
#define maxs ( 1 << 11 )
#define maxd 1010
#define maxn 11
 
int f[ maxs ][ maxd ] , n , tot , d , cnt[ 10 ] ;
char s[ maxn ] ;
 
int main(  ) {
    scanf( "%d" , &tot ) ;
    while ( tot -- ) {
        scanf( "%s%d" , s , &d ) ;
        for ( int i = 0 ; i < ( 1 << strlen( s ) ) ; ++ i ) {
            for ( int j = 0 ; j < d ; ++ j ) {
                f[ i ][ j ] = 0 ;
            }
        }
        memset( cnt , 0 , sizeof( cnt ) ) ;
        for ( int i = 0 ; i < strlen( s ) ; ++ i ) {
            cnt[ s[ i ] - '0' ] ++ ;
        }
        f[ 0 ][ 0 ] = 1 ;
        for ( int i = 0 ; i < ( 1 << strlen( s ) ) ; ++ i ) {
            for ( int j = 0 ; j < d ; ++ j ) if ( f[ i ][ j ] ) {
                for ( int k = 0 ; k < strlen( s ) ; ++ k ) if ( ! ( ( 1 << k ) & i ) ) {
                    int st = i | ( 1 << k ) , sd = ( j * 10 + s[ k ] - '0' ) % d ;
                    f[ st ][ sd ] += f[ i ][ j ] ;
                }
            }
        }
        int ans = f[ ( 1 << strlen( s ) ) - 1 ][ 0 ] ;
        for ( int i = 0 ; i < 10 ; ++ i ) {
            for ( int j = 1 ; j <= cnt[ i ] ; ++ j ) {
                ans /= j ;
            }
        }
        printf( "%d\n" , ans ) ;
    }
    return 0 ;
}

相关文章

  • BZOJ-1072: [SCOI2007]排列perm(状压DP

    题目:http://www.lydsy.com/JudgeOnline/problem.php?id=1072 状...

  • 状压DP

    最短Hamilton路径 原题链接[https://www.acwing.com/activity/content...

  • DP训练——状压DP

    状压DP BZOJ1087题意在的棋盘里面放个国王,使他们互不攻击,共有多少种摆放方案。国王能攻击到它上下左右,以...

  • 状压DP系列

    几点注意: 1.数组下标从1开始比较方便 zoj Easy 2048 Again保存状态的时候是保存下降子序列的情...

  • LeetCode 状压dp

    5639. 完成所有工作的最短时间[https://leetcode-cn.com/problems/find-m...

  • 状态压缩和状压DP

    问题:n*n的棋盘放置n个点,保证每一行,每一列都有且只有一个点,有几种放置方式? 一、组合数解法:ans=n!二...

  • POJ 3311 floyd+压状DP

    poj3311因为这道题 点N 不超过10 可以 把状态转化 为 二进制数,0表示没经过这个点,1表示经过这个点。...

  • 920. Number of Music Playlists

    排列组合 + DP这道题即考了排列组合的知识又考了DP的知识。这道题的难点在于两处。1。 DP的定义2。DP 的递...

  • HDU-5816 状压DP [2016多校]

    桌面有N张A型牌,M张B型牌,目前玩家可抽一张牌(盲抽),若抽到A牌则可再抽两张,若抽到B牌,则可减少对方若干生命...

  • 状压DP——二进制的妙用

    之前我们讲解了背包问题、树形DP,区间DP这三类问题。这些都是中规中矩的动态规划题目。今天,我为大家讲解一种比较有...

网友评论

    本文标题:BZOJ-1072: [SCOI2007]排列perm(状压DP

    本文链接:https://www.haomeiwen.com/subject/dpbafqtx.html