Aizu 1335 Equal Sum Sets

Description

Let us consider sets of positive integers less than or equal
to n. Note that all elements of a set are different. Also note
that the order of elements doesn‘t matter, that is, both {3, 5, 9} and {5, 9, 3}
mean the same set.

Specifying the number of set elements and their sum to
be k and s, respectively, sets satisfying
the conditions are limited. When n = 9, k=
3 and s = 23, {6, 8, 9} is the only such set. There may be
more than one such set, in general, however. When n =
9, k = 3 and s = 22, both {5, 8, 9}
and {6, 7, 9} are possible.

You have to write a program that calculates the number of the sets that
satisfy the given conditions.

Input

The input consists of multiple datasets. The number of datasets does not
exceed 100.

Each of the datasets has three
integers nk and s in
one line, separated by a space. You may assume 1 ≤ n ≤ 20,
1 ≤ k ≤ 10 and 1 ≤ s ≤ 155.

The end of the input is indicated by a line containing three zeros.

Output

The output for each dataset should be a line containing a single integer that
gives the number of the sets that satisfy the conditions. No other characters
should appear in the output.

You can assume that the number of sets does not exceed 231 -
1.

Sample Input

9 3 23
9 3 22
10 3 28
16 10 107
20 8 102
20 10 105
20 10 155
3 4 3
4 2 11
0 0 0

Output for the Sample Input

1
2
0
20
1542
5448
1
0
0

这种题目,一看就知道思路,就是枚举法来做,可是有那么多种情况,N!种,怎么都超时了,可是我们也要注意到一种题目的标志,就是状态压缩,对于这类题目,n一般都是20,而这个题就是20,而且完全符合状态压缩,虽然这个题有dp 的解法,可是状态压缩已经足以解决了


#include<map>
#include<set>
#include<stack>
#include<queue>
#include<cmath>
#include<vector>
#include<cstdio>
#include<string>
#include<cstring>
#include<cstdlib>
#include<iostream>
#include<algorithm>
#define inf 0x0f0f0f0f
using namespace std;

int sum,k,n,a[25];

int get(int state)
{
int cut=0;
while(state)
{
a[cut++]=state%2;
state=state/2;
}
return cut;
}

bool find(int s)
{
int cut=0;
int ans=0;
for (int i=0;i<s;i++)
{
if (a[i]==1)
{
cut++;
ans+=i+1;
}
}
if (cut==k && ans==sum) return true;
else return false;
}

int main()
{
while(scanf("%d%d%d",&n,&k,&sum)!=EOF && n && k && sum)
{
int s=1<<n;
int ans=0;
for (int i=0;i<s;i++)
{
int b=get(i);
if (find(b)) ans++;
}
printf("%d\n",ans);
}
return 0;
}

作者 chensunrise

时间: 2025-01-31 10:21:39

Aizu 1335 Equal Sum Sets的相关文章

Aizu 1335 Eequal sum sets

Let us consider sets of positive integers less than or equal to n. Note that all elements of a set are different. Also note that the order of elements doesnt matter, that is, both {3, 5, 9} and {5, 9, 3} mean the same set. Specifying the number of se

UvaLive6661 Equal Sum Sets dfs或dp

UvaLive6661 PDF题目 题意:让你用1~n中k个不同的数组成s,求有多少种组法. 题解: DFS或者DP或打表. 1.DFS 由于数据范围很小,直接dfs每种组法统计个数即可. 1 //#pragma comment(linker, "/STACK:102400000,102400000") 2 #include<cstdio> 3 #include<cmath> 4 #include<iostream> 5 #include<cs

D。6661 - Equal Sum Sets

Equal Sum Sets Let us consider sets of positive integers less than or equal to n. Note that all elements of a set aredifferent. Also note that the order of elements doesnt matter, that is, both {3, 5, 9} and {5, 9, 3} meanthe same set.Specifying the

6661 Equal Sum Sets(DP)

Let us consider sets of positive integers less than or equal to n. Note that all elements of a set are different. Also note that the order of elements doesnt matter, that is, both {3, 5, 9} and {5, 9, 3} mean the same set. Specifying the number of se

UVALive 6661 - Equal Sum Sets

Let us consider sets of positive integers less than or equal to n. Note that all elements of a set are different. Also note that the order of elements doesnt matter, that is, both {3, 5, 9} and {5, 9, 3} mean the same set. Specifying the number of se

UvaLive 6661 Equal Sum Sets (DFS)

Let us consider sets of positive integers less than or equal to n. Note that all elements of a set are different. Also note that the order of elements doesnt matter, that is, both {3, 5, 9} and {5, 9, 3} mean the same set. Specifying the number of se

[UVALive 6661 Equal Sum Sets] (dfs 或 dp)

题意: 求从不超过 N 的正整数其中选取 K 个不同的数字,组成和为 S 的方法数. 1 <= N <= 20  1 <= K<= 10  1 <= S <= 155 解题思路: DFS: 因为N,K.S的范围非常小.直接DFS就可以. /* ID: [email protected] PROG: LANG: C++ */ #include<map> #include<set> #include<queue> #include<

Equal Sum Sets

题目链接:http://acm.hust.edu.cn/vjudge/problem/visitOriginUrl.action?id=49406 题意: 给出三个数 n,k,s;在不小于n的找到k个使其的和等于s的可能性有多少种. 案例: input 9 3 23 9 3 22 10 3 28 16 10 107 20 8 102 20 10 105 20 10 155 3 4 3 4 2 11 0 0 0 output 1 2 0 20 1542 5448 1 0 0 思路分析: 利用dfs

UvaLive 6661 Equal Sum Sets 二进制枚举/DP

链接:http://vjudge.net/problem/viewProblem.action?id=49406 题意:根据给出的n,k,s求出n个数每个数都不大于k,和为s的序列(n个数每个都不同)的总情况数. 思路: 1.二进制枚举枚举出所有可能排列,并求和若和为s,则符合,否则不符合. 代码: #include<iostream> #include<set> #include<map> #include<queue> #include<cstri