程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> HDU 1028 Ignatius and the Princess III

HDU 1028 Ignatius and the Princess III

編輯:C++入門知識

HDU 1028 Ignatius and the Princess III


可以套完全背包。

每次累加起來就好了。

#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include

#define INF 0x7fffffff
#define eps 1e-8
#define LL long long
#define PI 3.141592654
#define CLR(a,b) memset(a,b,sizeof(a))
#define FOR(i,a,n) for(int i= a;i< n ;i++)
#define FOR0(i,a,b) for(int i=a;i>=b;i--)
#define pb push_back
#define mp make_pair
#define ft first
#define sd second
#define sf scanf
#define pf printf
#define acfun std::ios::sync_with_stdio(false)

#define SIZE 120+1
using namespace std;

int dp[SIZE];

int main()
{
    CLR(dp,0);
    dp[0]=1;
    FOR(i,1,SIZE)
    FOR(j,i,SIZE)
        dp[j]+=dp[j-i];

    int n;
    while(~sf("%d",&n))
        pf("%d\n",dp[n]);
}


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved