博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
组合数学 - 母函数的运用 --- hdu 1709 :The Balance
阅读量:6340 次
发布时间:2019-06-22

本文共 2158 字,大约阅读时间需要 7 分钟。

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:

 

// Memory   Time// 1347K     0MS// by : Snarl_jsb// 2014-09-19-11.59#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define N 10100#define LL long longusing 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<
<

  

 

转载地址:http://kshoa.baihongyu.com/

你可能感兴趣的文章
C#之MemberwiseClone与Clone
查看>>
Android性能优化之利用Rxlifecycle解决RxJava内存泄漏
查看>>
转: 如何为你的开源项目选择一个合适的开源协议?
查看>>
关系型数据库和NOSQL数据库对比
查看>>
Atitit 记录方法调用参数上下文arguments
查看>>
webstorm常用功能FTP,及常用快捷键
查看>>
eclipse html 打开方式
查看>>
[求助] win7 x64 封装 出现 Administrator.xxxxx 的问题
查看>>
人类投资经理再也无法击败电脑的时代终将到来了...
查看>>
一个最小手势库的实现
查看>>
HoloLens开发手记 - Vuforia开发概述 Vuforia development overview
查看>>
Android支付之支付宝封装类
查看>>
<亲测>CentOS中yum安装ffmpeg
查看>>
【分享】马化腾:产品设计与用户体验
查看>>
【机器学习PAI实践十】深度学习Caffe框架实现图像分类的模型训练
查看>>
全智慧的网络:思科十年来最具颠覆性的创新
查看>>
怎样将现有应用迁移到 VMware NSX
查看>>
赛门铁克收购以色列移动安全初创公司Skycure 旨在构建网络安全防御平台
查看>>
《Photoshop蒙版与合成(第2版)》目录—导读
查看>>
“最佳人气奖”出炉!4月27号,谁能拿到阿里聚安全算法挑战赛的桂冠?
查看>>