首页 > 其他分享 >hdu:The Balance(母函数)

hdu:The Balance(母函数)

时间:2023-01-26 19:33:34浏览次数:46  
标签:hdu 函数 int number cin qualities c2 c1 Balance

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.

 

输入样例

3
1 2 4
3
9 2 1

输出样例

0
2
4 5

天平既可以承j+k又可以称abs(j-k)
附带ac代码
#include<bits/stdc++.h>
using namespace std;
const int N=1e4+10;
int p[N],a[110],c1[N],c2[N];
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);cout.tie(0);
    int n;
    while(cin>>n)
    {
        int sum=0;
        for(int i=1;i<=n;++i)
        {cin>>a[i];sum+=a[i];
        }
        for(int i=0;i<=sum;++i)
        {c1[i]=0,c2[i]=0;}
        c1[0]=1;c1[a[1]]=1;
        for(int i=2;i<=n;++i)
        {
            for(int j=0;j<=sum;++j)
              for(int k=0;k<=a[i]&&k+j<=sum;k+=a[i])
             //k+j<=sum的限制仍成立因为实际情况不存在>sum
            {
                c2[j+k]+=c1[j];
                c2[abs(j-k)]+=c1[j];
                //此处应该取绝对值
            }
            for(int j=0;j<=sum;++j)
            c1[j]=c2[j],c2[j]=0;
        }
        int cnt=0;
        for(int i=1;i<=sum;++i)
        {
            if(!c1[i]) p[cnt++]=i;
        }
        cout<<cnt<<'\n';
        if(cnt)
        {
            for(int i=0;i<cnt;++i)
            cout<<p[i]<<' ';
            cout<<'\n';
            ////注意换行QAQ
        }
    }
    return 0;
}

 

标签:hdu,函数,int,number,cin,qualities,c2,c1,Balance
From: https://www.cnblogs.com/ruoye123456/p/17068108.html

相关文章

  • SQL Server 2005-2008 ROW_NUMBER() 分页函数效率
    --测试数据量:2161852条declare@idatetimeset@i=GETDATE();--SQL2005-2008--开始WITHtempAS(SELECTid,title,body,ROW_NUMBER()OVER(ORDERBYid)AS'Row......
  • 【C++ OOP 02 对象的初始化和清理】构造/析构函数、深/浅拷贝、初始化列表以及静态成
    【对象的初始化和清理】生活中我们买的电子产品都基本会有出厂设置,在某一天我们不用时候也会删除一些自己信息数据保证安全C++中的面向对象来源于生活,每个对象也都会有......
  • 积性函数学习笔记
    数论分块对于形如\[\sum_{i=1}^nf(i)g(\lfloor\frac{n}{i}\rfloor)\]的式子,我们可以发现\(\lfloor\dfrac{n}{i}\rfloor\)的值可以分成若干块,具体的,设上一块的右边界为......
  • hdu4135
    求[a,b]中与n互素的数字个数  #include<iostream>#include<algorithm>usingnamespacestd;constintN=200;#defineintlonglonginttot,fac[N];......
  • SQL Server 2000 函数使用---CAST 和 CONVERT
    将某种数据类型的表达式显式转换为另一种数据类型。CAST和CONVERT提供相似的功能。语法使用CAST:CAST(expressionASdata_type)使用CONVERT:CONVERT(data_type[(le......
  • (转)CreateProcess API函数的妙用
        CreateProcess(              LPCWSTRlpszImageName, //指向可执行的模块的指针            LPCWSTRlpszCmdLine, //指向可执行命......
  • Serverless 触发器和函数赋能自动化运维
    Serverless架构在运维层面有着得天独厚的优势,不仅因为其事件触发可以有针对性地获取、响应一些事件,还因为其轻量化、低运维的特性让很多运维开发者甚是喜爱。在实际生产中......
  • Python内置函数
    5.6Python内置函数Python自带的所有内置函数如下:Python函数以上为Python3.10中所有的内置函数,其中绝大部分在前面的学习当中都已经接触过了。这里在补充介绍下没有......
  • 函数计算与对象存储实现MapReduce
    Serverless架构可以在很多领域发挥极具价值的作用,包括监控告警、人工智能、图像处理、音视频处理等。同样,在大数据领域,Serverless架构仍然可以有良好的表现。以WordCount为......
  • 读Java8函数式编程笔记01_Lambda表达式
    1. Java8函数式编程1.1. 没有单子1.2. 没有语言层面的惰性求值1.3. 没有为不可变性提供额外支持1.4. 集合类可以拥有一些额外的方法:default方法2. 现实世界中......