zoukankan      html  css  js  c++  java
  • bzoj:1677 [Usaco2005 Jan]Sumsets 求和

    Description

    Farmer John commanded his cows to search for different sets of numbers that sum to a given number. The cows use only numbers that are an integer power of 2. Here are the possible sets of numbers that sum to 7: 1) 1+1+1+1+1+1+1 2) 1+1+1+1+1+2 3) 1+1+1+2+2 4) 1+1+1+4 5) 1+2+2+2 6) 1+2+4 Help FJ count all possible representations for a given integer N (1 <= N <= 1,000,000).

    给出一个N(1≤N≤10^6),使用一些2的若干次幂的数相加来求之.问有多少种方法

    Input

       一个整数N.

    Output

    方法数.这个数可能很大,请输出其在十进制下的最后9位.

    Sample Input

    7

    Sample Output

    6

    有以下六种方式
    1) 1+1+1+1+1+1+1
    2) 1+1+1+1+1+2
    3) 1+1+1+2+2
    4) 1+1+1+4
    5) 1+2+2+2
    6) 1+2+4
     
    傻X一开始只想到了完全背包,以1,2,4……为容量即可
    结果如下:
    #include<cstdio>
    using namespace std;
    const int MOD=1e9;
    int n,dp[1000001];
    int main(){
        scanf("%d",&n);
        dp[0]=1;
        for (int i=1;i<=n;i*=2){
            for (int j=i;j<=n;j++) dp[j]=dp[j]+dp[j-i],dp[j]-=dp[j]>=MOD?MOD:0;
        }
        printf("%d
    ",dp[n]);
    }
    然后看了一下黄学长的38MS代码
    果然是hzw,方法如下:
    如果i为奇数,显然f[i]=f[i-1],这个不难理解
    如果i为偶数,就有f[i]=f[i-1]+f[i/2]
    考虑所有构成f[i]的方案,对于其中含有1的方案,可以由f[i-1]来生成,不含1的方案中,每个数字都是2的倍数,那么只要把每个数字都除以2,就能与构成f[i/2]的方案一一对应,方案数也显然。
    hzw果然是hzw……
    附黄学长代码:
    #include<cstdio>
    #include<iostream>
    using namespace std;
    const int maxn=1002333;
    const int modd=1000000000;
    int f[1000001],i,n;
    int main(){
        scanf("%d",&n);f[1]=1;
        for(i=2;i<=n;i++)if(i&1)f[i]=f[i-1];else {f[i]=f[i-1]+f[i>>1];if(f[i]>=modd)f[i]-=modd;}
        printf("%d
    ",f[n]);
        return 0;
    }
  • 相关阅读:
    class和struct
    类内初始值(c++11)
    默认初始化、值初始化
    聚合类
    对象
    排序算法的比较
    快速排序
    堆排序
    ubunu设置java命令为全局的命令-添加到全局环境变量
    Mina笔记
  • 原文地址:https://www.cnblogs.com/Enceladus/p/4992836.html
Copyright © 2011-2022 走看看