UVALive 6529 Eleven 区间dp

题目链接:点击打开链接

题意:

给定一个数,重新排列这个数的各个位置使得

1、无前导0

2、能被11整除

问:

有多少种组合方法

#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
typedef long long ll;
const int mod = 1000000000 + 7;
const int N = 100+2;
const int L = 50+2;
const int M = L*9;

char s[N];
int x, sum, len, app[10];
int C[N][N], d[10][L][M], g[N][N], tot[12];

int c(int x, int y) {
	if (~C[x][y])
		return C[x][y];
	if (x == 1 || y==0)
		return C[x][y] = 1;
	C[x][y] = 0;
	for (int i = 0; i <= y; ++i)
		C[x][y] = (C[x][y] + c(x-1, y-i))%mod;
	return C[x][y];
}
void work() {
	int v;
	len = strlen(s);
	sum = 0;
	memset(app, 0, sizeof app);
	for (int i = 0; i < len; ++i) {
		++ app[s[i]-'0'];
		sum += s[i]-'0';
	}
	tot[0] = 0;
	for (int i = 1; i <= 9; ++i)
		tot[i] = tot[i-1] + app[i];
	x = (len+1)/2;
	memset(d, 0, sizeof d);
	d[0][0][0] = 1;
	for (int i = 0; i <= 8; ++i)
		for (int j = 0; j <= x && j <= tot[i]; ++j)
			for (int s = 0; s <= j*9; ++s)
				if (d[i][j][s] > 0)
					for (int k = 0; k <= app[i+1] && k+j <= x; ++k) {
						v = (ll)d[i][j][s] * c(j+1,k) % mod;
						v = (ll)v*g[len-x-tot[i]+j][app[i+1]-k]%mod;
						d[i+1][j+k][s+k*(i+1)] = (d[i+1][j+k][s+k*(i+1)] + v)%mod;
					}
	int ans = 0;
	for (int j = 1; j <= x; ++j)
		for (int s = 0; s <= j*9; ++s)
			if (d[9][j][s] > 0 && abs(sum-s-s) % 11 == 0) {
				int k = x - j;
				if (k > app[0])
					continue;
				ans += (ll)d[9][j][s] * c(j,k) % mod;
				ans %= mod;
			}
	printf("%d\n", ans);
}
int main() {
	memset(C, -1, sizeof C);
	memset(g, 0, sizeof g);
	for (int i = 0; i < N; ++i) {
		g[i][0] = g[i][i] = 1;
		for (int j = 1 ; j < i; ++j)
			g[i][j] = (g[i-1][j] + g[i-1][j-1])%mod;
	}
	while (~scanf("%s", s))
		work();
	return 0;
}
时间: 2024-10-10 03:08:29

UVALive 6529 Eleven 区间dp的相关文章

UVALive - 3363 String Compression 区间DP

题目大意:有一串字符串,现在有一种转换规则,如果字符串中出现循环的子串,可以将其转化为 :子串数量(子串) 现在问这个字符串的最短长度 解题思路:区间dp,然后分类讨论,这题的难点是如何再进行缩减 将情况分为两种 一种是区间刚好符合缩减情况的,找出该区间的循环节,看能否继续缩减即可 另一种情况就是普通的区间DP了 #include<cstdio> #include<algorithm> #include<cstring> using namespace std; #de

UVALive 4987---Evacuation Plan(区间DP)

题目链接 https://icpcarchive.ecs.baylor.edu/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2988 problem Description Flatland government is building a new highway that will be used to transport weapons from its main weapon plan

UVALive 3516 Exploring Pyramids 区间dp+计数原理

题目链接:点击打开链接 给定多叉树的先序遍历结果,求多叉树的同构数 思路:区间dp import java.io.PrintWriter; import java.util.ArrayList; import java.util.Scanner; public class Main { int min(int a,int b){return a>b?b:a;} int max(int a,int b){return a>b?a:b;} long min(long a,long b){retur

uva 10003 Cutting Sticks 简单区间dp

// uva 10003 Cutting Sticks 区间dp // 经典的区间dp // dp(i,j)表示切割小木棍i-j所需要的最小花费 // 则状态转移为dp(i,j) = min{dp(i,k) + dp(k,j) + a[j]-a[i]) // 其中k>i && k<j // a[j] - a[i] 为第一刀切割的代价 // a[0] = 0,a[n+1] = L; // dp数组初始化的时候dp[i][i+1]的值为 0,这表示 // 每一段都已经是切割了的,不

黑书例题 Fight Club 区间DP

题目可以在bnuoj.soj等OJ上找到. 题意: 不超过40个人站成一圈,只能和两边的人对战.给出任意两人对战的输赢,对于每一个人,输出是否可能是最后的胜者. 分析: 首先序列扩展成2倍,破环成链. dp[i][j]表示i和j能够相遇对打,那么dp[i][i+n]为真代表可以成为最后胜者. 枚举中间的k,若i和j都能和k相遇,且i和j至少一人能打赢k,那么i和j可以相遇. 复杂度o(n^3) 1 #include<cstdio> 2 #include<cstring> 3 usi

算法复习——区间dp

感觉对区间dp也不好说些什么直接照搬讲义了2333 例题: 1.引水入城(洛谷1514) 这道题先开始看不出来到底和区间dp有什么卵关系···· 首先肯定是bfs暴力判一判可以覆盖到哪些城市····无解直接输出···有解得话就要想想了···· 这道题关键是要发现··如果一个蓄水池所在城市可以覆盖到一些沙漠城市···那么这些沙漠城市肯定是一段····不然假设有一个城市是断开的而两边都被同一个蓄水池流出的水覆盖,这个城市四周的城市都肯定比它矮···(不理解举个反例吧···反正我举不出来)···然后就

合并石子 区间dp水题

合并石子 链接: nyoj 737 描述: 有N堆石子排成一排,每堆石子有一定的数量.现要将N堆石子并成为一堆.合并的过程只能每次将相邻的两堆石子堆成一堆,每次合并花费的代价为这两堆石子的和,经过N-1次合并后成为一堆.求出总的代价最小值. tags:最基本的区间dp,这题范围小,如果n大一些,还是要加个平行四边行优化. #include<iostream> #include<cstdio> #include<cstdlib> #include<cstring&g

Luogu P2734 游戏 A Game 区间DP

P2734 游戏 A Game 题目背景 有如下一个双人游戏:N(2 <= N <= 100)个正整数的序列放在一个游戏平台上,游戏由玩家1开始,两人轮流从序列的任意一端取一个数,取数后该数字被去掉并累加到本玩家的得分中,当数取尽时,游戏结束.以最终得分多者为胜. 题目描述 编一个执行最优策略的程序,最优策略就是使玩家在与最好的对手对弈时,能得到的在当前情况下最大的可能的总分的策略.你的程序要始终为第二位玩家执行最优策略. 输入输出格式 输入格式: 第一行: 正整数N, 表示序列中正整数的个数

HDU-4283 You Are the One (区间DP)

Problem Description The TV shows such as You Are the One has been very popular. In order to meet the need of boys who are still single, TJUT hold the show itself. The show is hold in the Small hall, so it attract a lot of boys and girls. Now there ar