1. 程式人生 > >杭電 OJ 1028 整數劃分

杭電 OJ 1028 整數劃分

Problem Description "Well, it seems the first problem is too easy. I will let you know how foolish you are later." feng5166 says.

"The second problem is, given an positive integer N, we define an equation like this:
  N=a[1]+a[2]+a[3]+...+a[m];
  a[i]>0,1<=m<=N;
My question is how many different equations you can find for a given N.
For example, assume N is 4, we can find:
  4 = 4;
  4 = 3 + 1;
  4 = 2 + 2;
  4 = 2 + 1 + 1;
  4 = 1 + 1 + 1 + 1;
so the result is 5 when N is 4. Note that "4 = 3 + 1" and "4 = 1 + 3" is the same in this problem. Now, you do it!"

Input The input contains several test cases. Each test case contains a positive integer N(1<=N<=120) which is mentioned above. The input is terminated by the end of file.

Output For each test case, you have to output a line contains an integer P which indicate the different equations you have found.

Sample Input 4 10 20
Sample Output 5 42 627

以下文章便於對整數劃分的演算法大體有一個瞭解

-------------------------------------------------------------------------------------------------------------------------------------

整數劃分問題是將一個正整數n拆成一組數連加並等於n的形式,且這組數中的最大加數不大於n。
    如6的整數劃分為
    最大數  
    6         6
    5        5 + 1
    4         4 + 2, 4 + 1 + 1
    3         3 + 3, 3 + 2 + 1, 3 + 1 + 1 + 1


    2        2 + 2 + 2, 2 + 2 + 1 + 1, 2 + 1 + 1 + 1 + 1
    1         1 + 1 + 1 + 1 + 1 + 1

    共11種。下面介紹一種通過遞迴方法得到一個正整數的劃分數。

    遞迴函式的宣告為 int split(int n, int m);其中n為要劃分的正整數,m是劃分中的最大加數(當m > n時,最大加數為n),
    1 當n = 1或m = 1時,split的值為1,可根據上例看出,只有一個劃分1 或 1 + 1 + 1 + 1 + 1 + 1
    可用程式表示為if(n == 1 || m == 1) return 1;


    2 下面看一看m 和 n的關係。它們有三種關係
    (1) m > n
    在整數劃分中實際上最大加數不能大於n,因此在這種情況可以等價為split(n, n);
    可用程式表示為if(m > n) return split(n, n);    
    (2) m = n
    這種情況可用遞迴表示為split(n, m - 1) + 1,從以上例子中可以看出,就是最大加
    數為6和小於6的劃分之和
    用程式表示為if(m == n) return (split(n, m - 1) + 1);
    (3) m < n
    這是最一般的情況,在劃分的大多數時都是這種情況。
    從上例可以看出,設m = 4,那split(6, 4)的值是最大加數小於4劃分數和整數2的劃分數的和。
    因此,split(n, m)可表示為split(n, m - 1) + split(n - m, m)

    根據以上描述,可得源程式如下:


#include 

   int split(int n, int m)
    {
      if(n < 1 || m < 1) return 0;
      if(n == 1 || m == 1) return 1;
      if(n < m) return split(n, n);
      if(n == m) return (split(n, m - 1) + 1);
      if(n > m) return (split(n, m - 1) + split((n - m), m));
   }

int main()
{
      printf("12的劃分數: %d", split(12, 12));
    return 0;
}

--------------------------------------------------------------------------

然而遞迴在本題會超時,不過上述的敘述加深了我對整數劃分的理解。

非遞迴的的程式碼:

#include <iostream>
using namespace std;

int main()
{
	freopen("D:\\input.txt","r",stdin);




	int n;
	int A[121][121];
	for(int i=0;i<121;i++)
	{
		for(int j=0;j<121;j++)
		{
			A[i][j]=0;
			A[i][1]=1;
		}
	}
	A[0][0]=1;
	A[1][0]=1;
    A[1][1]=1;
    /*A[2][1]=1;
    A[2][2]=2;
    A[3][1]=1;
    A[3][2]=2;
    A[3][3]=3;*/



	for(int i=2;i<121;i++)
	{
		for(int j=1;j<=i;j++)
		{
			if(i-j<=j)
			{
				A[i][j]=A[i][j-1]+A[i-j][i-j];
			}
			else
				A[i][j]=A[i][j-1]+A[i-j][j];
		}
	}
	while(cin>>n)
		cout<<A[n][n]<<endl;
}


Problem Description "Well, it seems the first problem is too easy. I will let you know how foolish you are later." feng5166 says.

"The second problem is, given an positive integer N, we define an equation like this:
  N=a[1]+a[2]+a[3]+...+a[m];
  a[i]>0,1<=m<=N;
My question is how many different equations you can find for a given N.
For example, assume N is 4, we can find:
  4 = 4;
  4 = 3 + 1;
  4 = 2 + 2;
  4 = 2 + 1 + 1;
  4 = 1 + 1 + 1 + 1;
so the result is 5 when N is 4. Note that "4 = 3 + 1" and "4 = 1 + 3" is the same in this problem. Now, you do it!"

Input The input contains several test cases. Each test case contains a positive integer N(1<=N<=120) which is mentioned above. The input is terminated by the end of file.

Output For each test case, you have to output a line contains an integer P which indicate the different equations you have found.

Sample Input 4 10 20
Sample Output 5 42 627

相關推薦

OJ 1028 整數劃分

Problem Description "Well, it seems the first problem is too easy. I will let you know how foolish you are later." feng5166 says. "Th

1028 整數劃分問題 母函式

c1[3] = 5 說明 x 的三次方的係數為五 說明 3 可以有5 中劃分方法 #include <iostream> using namespace std; int c1[130]

近幾年OJ大型比賽題目合集【更新到2017年10月】

杭電 網絡賽 2016年 fin 區域賽 現場賽 2015年 font strong 2017年: 區域賽網絡賽 6194~6205 6206~6216 2016年: 區域賽網絡賽 5868~5877 5878~5891 5892~5901 區域賽

oj 1106

total rip memory spa 除開 scan long tdi else 排序 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Su

sincerit-oj 1237 簡單計算器

1237 簡單計算器 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 26856 Accepted Submission(s): 9

【ACM】OJ 2015

    #include <iostream> using namespace std; int main () { int count,sum,i,j,m,n; while(scanf("%d%d",&m,&n)==2) {

【ACM】OJ 2090

題目中給出的四捨五入的條件可以忽略不計了,因為提交的程式沒有考慮四捨五入,照樣AC了 printf("%.1lf\n",sum); AC程式碼: 寫的有點複雜了,其實不用定義結構體也可以。  #include<iostream> #include <c

【ACM】OJ 1284(待更)

#include<iostream> using namespace std; int main(){ int n; while(cin>>n){ int ans=0; for(int i=0;i<=n/3;i++){ /

【ACM】OJ 1013

WA程式碼 輸入很大的數的時候會輸出“-1”,所以考慮用字元陣列來儲存輸入的資料。 #include <iostream> #include <cstring> #include <cstdio> using namespace std; lon

【ACM】OJ 1076

陣列要開的大一些,一開始陣列只開到10000+5,就顯示了錯誤的資料 AC程式碼:  #include <iostream> #include <cstring> using namespace std; const int maxn = 1000

【ACM】OJ 2552

本來還查了atan 和 atan2 的用法,結果總是WA 看了解析之後才知道原來是要公式推導,最後得出所求的式子是一個等式,結果為1。 所以,以後出類似與數學公式的題,可能是要手算推到,在輸出特定的結果。(長見識!之前也遇到過,突然想起來) WA程式碼: #include <

【ACM】OJ 1181

http://acm.hdu.edu.cn/showproblem.php?pid=1181 DFS搜尋(遞迴函式) #include <iostream> #include <cstdio> #include <cstring> #include &

oj蟠桃

C++ #include<iostream> using namespace std; int main() { int n; int m=1; //桃子數量 while(cin>>n) { for(int i

oj水仙花數

Problem Description 春天是鮮花的季節,水仙花就是其中最迷人的代表,數學上有個水仙花數,他是這樣定義的: “水仙花數”是指一個三位數,它的各位數字的立方和等於其本身,比如:153=13+53+3^3。 現在要求輸出所有在m和n範圍內的水仙花數。 I

oj--2031

import java.util.Scanner; public class Main {  public static void main(String[] args){   Scanner scanner = new Scanner(System.in);  

oj-Vowel Counting

#include<stdio.h> #include<string.h> #include<stdlib.h> int main() { int T,first=1; char s[51],c; scanf_s("%d", &T); while (

【ACM】OJ 2048

【要點】: 1、階乘 2、錯排公式。 錯排公式:D(1)=0,D(2)=1,D(n) = (n-1)*(D(n-1) + D(n-2))。 階乘則是用迴圈來算。 AC程式碼: #include <iostream> #include <cstring&g

oj--1034(糖果分配)

  Problem Description:          A number of students sit in a circle facing their teacher in the center.

oj--1002(高精度加法)

 思路分析:這是杭電上的一道典型的高精度加法運算,以現有的整型資料型別不足以計算如此大的數,不然會導致溢位。  此題的核心演算法是加法運算。 1.先將在螢幕上輸入的兩個數分別用字元陣列(字串)儲存起來 2.然後將這兩個數每一位進行對位,長度少的在高位補零,直至相等;為

oj--1070(貪心演算法)

  1. Ignatius will never drink the milk which is produced 6 days ago or earlier. That means if the milk is produced 2005-1-1, Igna