hdu1028 Ignatius and the Princess III

solution

此题有两种解法。

第一种解法就是裸的完全背包。

就相当于有n种物品,第i种物品的重量是i。每种物品有无限多个,问恰好填满一个容量为n的背包的方案数。

第二种解法是生成函数。

用生成函数表示拆分出的的数量。用表示拆分出的的数量。剩下的同理。最终的系数就是答案。

code

解法1

/*
* @Author: wxyww
* @Date:   2020-04-16 14:18:39
* @Last Modified time: 2020-04-16 14:19:55
*/
#include<cstdio>
#include<iostream>
#include<cstdlib>
#include<cstring>
#include<algorithm>
#include<queue>
#include<vector>
#include<ctime>
using namespace std;
typedef long long ll;

ll read() {
    ll x = 0,f = 1;char c = getchar();
    while(c < '0' || c > '9') {
        if(c == '-') f = -1; c = getchar();
    }
    while(c >= '0' && c <= '9') {
        x = x * 10 + c - '0'; c = getchar();
    }
    return x * f;
}
int f[150];
int main() {
    int n;
    while(~scanf("%d",&n)) {
        memset(f,0,sizeof(f));
        f[0] = 1;
        for(int i = 1;i <= n;++i) {
            for(int j = i;j <= n;++j) 
                f[j] += f[j - i];
        }
        cout<<f[n]<<endl;
    }

    return 0;
}

解法2

/*
* @Author: wxyww
* @Date:   2020-04-16 14:11:40
* @Last Modified time: 2020-04-16 14:19:27
*/
#include<cstdio>
#include<iostream>
#include<cstdlib>
#include<cstring>
#include<algorithm>
#include<queue>
#include<vector>
#include<ctime>
using namespace std;
typedef long long ll;
const int N = 150;
ll read() {
    ll x = 0,f = 1;char c = getchar();
    while(c < '0' || c > '9') {
        if(c == '-') f = -1; c = getchar();
    }
    while(c >= '0' && c <= '9') {
        x = x * 10 + c - '0'; c = getchar();
    }
    return x * f;
}
int f[N][N],tmp[N];
int main() {
    int n;
    while(~scanf("%d",&n)) {
        memset(f,0,sizeof(f));
        for(int i = 0;i <= n;++i) f[1][i] = 1;
        for(int t = 2;t <= n;++t) {
            for(int i = 0;i <= n;++i) {
                for(int k = 0;k + i <= n;k += t) {
                    f[t][i + k] += f[t - 1][i];
                }
            }
        }
        cout<<f[n][n]<<endl;
    }

    return 0;
}
全部评论

相关推荐

一颗宏心:华为HR晚上过了十二点后还给我法消息。
点赞 评论 收藏
分享
霁华Tel:秋招结束了,好累。我自编了一篇对话,语言别人看不懂,我觉得有某种力量在控制我的身体,我明明觉得有些东西就在眼前,但身边的人却说啥也没有,有神秘人通过电视,手机等在暗暗的给我发信号,我有时候会突然觉得身体的某一部分不属于我了。面对不同的人或场合,我表现出不一样的自己,以至于都不知道自己到底是什么样子的人。我觉得我已经做的很好,不需要其他人的建议和批评,我有些时候难以控制的兴奋,但是呼吸都让人开心。
点赞 评论 收藏
分享
不愿透露姓名的神秘牛友
11-21 19:05
面试官_我太想进步了:混学生会的,难怪简历这么水
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务