#297 (div.2) E. Anya and Cubes

1.题目描述:点击打开链接

2.解题思路:本题利用双向查找解决。双向查找一般用于求若干个数之和相加等于一个固定值的题目。一般方法是将n个数分为两部分:1~n/2和n/2+1到n,然后枚举出两部分的所有可能的结果,最后利用二分查找看第一部分的结果是否存在于第二部分中。本题也是让找一些数之和等于S,这个数还可以变成对应的阶乘数,由于阶乘的个数受到k的限制。因此可以利用dfs来枚举所有的情况。由于最后要求出方案的个数,因此一组sum,k(和值和已经使用的k的个数)和它出现的次数构成一个映射,因此用map来保存,即定义map<P,int>a,其中P就是pair<LL,int>类型。其他的过程就和双向搜索的主过程一样了。详细细节见代码注释。

3.代码:

#define _CRT_SECURE_NO_WARNINGS
#include<iostream>
#include<algorithm>
#include<string>
#include<sstream>
#include<set>
#include<vector>
#include<stack>
#include<map>
#include<queue>
#include<deque>
#include<cstdlib>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<ctime>
#include<functional>
using namespace std;

#define N 25
typedef long long LL;
typedef pair<LL, int> P;
map<P, int>a, b;
int val[N];
LL f[N], S;
int _n, _k;
void dfs1(int pos, LL sum, int k)
{
	if (sum > S)return;
	if (k > _k)return;
	if (pos > _n / 2)
	{
		a[P(sum, k)]++;
		return;
	}
	dfs1(pos + 1, sum + val[pos], k);
	dfs1(pos + 1, sum, k);
	if (val[pos] <= 20)
		dfs1(pos + 1, sum + f[val[pos]], k + 1);
}
void dfs2(int pos, LL sum, int k)
{
	if (sum > S)return;
	if (k > _k)return;
	if (pos > _n)
	{
		b[P(sum, k)]++;
		return;
	}
	dfs2(pos + 1, sum + val[pos], k);
	dfs2(pos + 1, sum, k);
	if (val[pos] <= 20)
		dfs2(pos + 1, sum + f[val[pos]], k + 1);
}
int main()
{
	//freopen("t.txt", "r", stdin);
	f[0] = f[1] = 1;
	for (int i = 2; i <= 20; i++)f[i] = f[i - 1] * i;//计算阶乘
	while (cin >> _n >> _k >> S)
	{
		a.clear(), b.clear();
		for (int i = 1; i <= _n; i++)
			scanf("%d", val + i);
		dfs1(1, 0, 0);//先计算1到_n/2之间的所有情况,结果存放在a中
		dfs2(_n / 2 + 1, 0, 0);//再计算_n/2+1到_n的所有情况,结果存放在b中
		LL ans = 0;
		map<P, int>::iterator it = a.begin();
		for (it; it != a.end(); it++)
		{
			int j = ((*it).first).second;//第一部分中使用了j个感叹号
			for (int i = 0; i + j <= _k; i++)
			{
				if (b.count(make_pair(S - (it->first).first, i)))
					ans += (LL)it->second*b[make_pair(S - (it->first).first, i)];
			}
		}
		cout << ans << endl;
	}
	return 0;
}
时间: 2024-10-03 22:11:35

#297 (div.2) E. Anya and Cubes的相关文章

Codeforces Round #297 (Div. 2)E. Anya and Cubes

题目链接:http://codeforces.com/problemset/problem/525/E 题意: 给定n个数,k个感叹号,常数S 下面给出这n个数. 目标: 任意给其中一些数变成阶乘,至多变k个. 再任意取一些数,使得这些数和恰好为S 问有多少方法. 思路: 三进制状压,0代表不取,1代表取阶乘,2代表直接取: 中途查找,节约空间: 代码如下: #include<cstdio> #include<cstring> #include<iostream> #i

Codeforces Round #297 (Div. 2) E题. Anya and Cubes (中途相遇法)

题目地址:Anya and Cubes 比赛的时候居然没想起中途相遇法...这题也是属于想起来就很简单系列. 中途相遇法也叫折半搜索.就是处理前一半,把结果储存起来,再处理后一半,然后匹配前一半存储的结果. 代码如下: #include <iostream> #include <string.h> #include <math.h> #include <queue> #include <algorithm> #include <stdlib

E. Anya and Cubes (CF #297 (Div. 2) 折半搜索)

E. Anya and Cubes time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output Anya loves to fold and stick. Today she decided to do just that. Anya has n cubes lying in a line and numbered from 1 to n

BFS Codeforces Round #297 (Div. 2) D. Arthur and Walls

题目传送门 1 /* 2 题意:问最少替换'*'为'.',使得'.'连通的都是矩形 3 BFS:搜索想法很奇妙,先把'.'的入队,然后对于每个'.'八个方向寻找 4 在2*2的方格里,若只有一个是'*',那么它一定要被替换掉 5 */ 6 #include <cstdio> 7 #include <iostream> 8 #include <algorithm> 9 #include <cstring> 10 #include <queue> 1

贪心 Codeforces Round #297 (Div. 2) C. Ilya and Sticks

题目传送门 1 /* 2 题意:给n个棍子,组成的矩形面积和最大,每根棍子可以-1 3 贪心:排序后,相邻的进行比较,若可以读入x[p++],然后两两相乘相加就可以了 4 */ 5 #include <cstdio> 6 #include <algorithm> 7 #include <cstring> 8 #include <cmath> 9 using namespace std; 10 11 typedef long long ll; 12 13 co

codeforces 525 E Anya and Cubes 中途相遇法

codeforces 525 E Anya and Cubes 中途相遇法 题意: 给出n个数a1,a2,...,an,要求从中选出一些数,可以把其中最多k个变成它自己的阶乘,然后选出的数求和,问最后和等于s的选法有多少种. 限制: 1 <= n <= 25; 0 <= k <= n; 1<= s <= 1e16; 1 <= ai <= 1e9 思路: 一般数据量20~30都会考虑中途相遇法,就是折半暴力. ps:用三进制暴力会比直接深搜多一个常数10,因为

Codeforces Round #297 (Div. 2) (ABCDE题解)

比赛链接:http://codeforces.com/contest/525 算是比较简单的一场了,拖了好久现在才补 A. Vitaliy and Pie time limit per test:2 seconds memory limit per test:256 megabytes After a hard day Vitaly got very hungry and he wants to eat his favorite potato pie. But it's not that sim

模拟 Codeforces Round #297 (Div. 2) A. Vitaliy and Pie

题目传送门 1 /* 2 模拟:这就是一道模拟水题,看到标签是贪心,还以为错了呢 3 题目倒是很长:) 4 */ 5 #include <cstdio> 6 #include <algorithm> 7 #include <iostream> 8 #include <algorithm> 9 #include <cstring> 10 using namespace std; 11 12 const int MAXN = 2e5 + 10; 13

codeforces 297 E. Anya and Cubes

参考题解:http://blog.csdn.net/u014800748/article/details/44680613 题意: 给你n个cube,从里边最多选k个数,求选定的数中,求有多少数,或这个数的阶乘,的和等于S的个数数. 思路: 本题利用双向查找解决.双向查找一般用于求若干个数之和相加等于一个固定值的题目.一般方法是将n个数分为两部分:1~n/2和n/2+1到n,然后枚举出两部分的所有可能的结果,最后利用二分查找看第一部分的结果是否存在于第二部分中.本题也是让找一些数之和等于S,这个