组合数学 - 母函数的运用 --- hdu 1709 :The Balance
The Balance#
Time Limit: 1000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 5706 Accepted Submission(s): 2311
Problem Description
Now you are asked to measure a dose of medicine with a balance and a number of weights. Certainly it is not always achievable. So you should find out the qualities which cannot be measured from the range [1,S]. S is the total quality of all the weights.
Input
The input consists of multiple test cases, and each case begins with a single positive integer N (1<=N<=100) on a line by itself indicating the number of weights you have. Followed by N integers Ai (1<=i<=N), indicating the quality of each weight where 1<=Ai<=100.
Output
For each input set, you should first print a line specifying the number of qualities which cannot be measured. Then print another line which consists all the irrealizable qualities if the number is not zero.
Sample Input
3
1 2 4
3
9 2 1
Sample Output
0
2
4 5
Mean:
给你N个砝码,每个砝码有自己的重量,现在要你计算从1~S中哪些重量是不能用这些砝码称出来的。(其中S为所有砝码的重量之和)。
analyse:
就是一道母函数的运用题,要注意的是砝码可以摆放在两个托盘上,所以要注意的是两个托盘两边的差值也能称出来的情况,其他的和普通母函数差不多。
Time complexity:O(n^3)
Source code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | // Memory Time // 1347K 0MS // by : Snarl_jsb // 2014-09-19-11.59 #include<algorithm> #include<cstdio> #include<cstring> #include<cstdlib> #include<iostream> #include<vector> #include<queue> #include<stack> #include<map> #include<string> #include<climits> #include<cmath> #define N 10100 #define LL long long using namespace std; int val[N]; int c1[N],c2[N]; int main() { ios_base::sync_with_stdio( false ); cin.tie(0); // freopen("C:\\Users\\ASUS\\Desktop\\cin.cpp","r",stdin); // freopen("C:\\Users\\ASUS\\Desktop\\cout.cpp","w",stdout); int n; while (cin>>n) { long long sum=0; for ( int i=1;i<=n;++i) { cin>>val[i]; sum+=val[i]; } memset(c1,0, sizeof (c1)); memset(c2,0, sizeof (c2)); c1[0]=c1[val[1]]=1; for ( int i=2;i<=n;++i) { for ( int j=0;j<=sum;++j) { for ( int k=0;k<=1;++k) { c2[k*val[i]+j]+=c1[j]; c2[abs(k*val[i]-j)]+=c1[j]; } } for ( int j=0;j<=sum;++j) { c1[j]=c2[j]; c2[j]=0; } } int res[N],ans=0; for ( int i=1;i<=sum;++i) { if (!c1[i]) { res[ans++]=i; } } if (!ans) { puts( "0" ); continue ; } cout<<ans<<endl; ans--; for ( int i=0;i<ans;++i) { cout<<res[i]<< " " ; } cout<<res[ans]<<endl; } return 0; } |
作者:北岛知寒
出处:https://www.cnblogs.com/crazyacking/p/3982043.html
版权:本作品采用「署名-非商业性使用-相同方式共享 4.0 国际」许可协议进行许可。
标签:
组合数学 - 母函数的运用
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 如何编写易于单元测试的代码
· 10年+ .NET Coder 心语,封装的思维:从隐藏、稳定开始理解其本质意义
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 周边上新:园子的第一款马克杯温暖上架
· Open-Sora 2.0 重磅开源!
· 分享 3 个 .NET 开源的文件压缩处理库,助力快速实现文件压缩解压功能!
· Ollama——大语言模型本地部署的极速利器
· DeepSeek如何颠覆传统软件测试?测试工程师会被淘汰吗?