程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> uva 165 Stamps (回溯)

uva 165 Stamps (回溯)

編輯:C++入門知識

uva 165 Stamps (回溯)


uva 165 Stamps



Download as PDF

The government of Nova Mareterrania requires that various legal documents have stamps attached to them so that the government can derive revenue from them. In terms of recent legislation, each class of document is limited in the number of stamps that may be attached to it. The government wishes to know how many different stamps, and of what values, they need to print to allow the widest choice of values to be made up under these conditions. Stamps are always valued in units of $1.

This has been analysed by government mathematicians who have derived a formula for n(h,k), where h is the number of stamps that may be attached to a document, k is the number of denominations of stamps available, and n is the largest attainable value in a continuous sequence starting from $1. For instance, if h=3, k=2 and the denominations are $1 and $4, we can make all the values from $1 to $6 (as well as $8, $9 and $12). However with the same values of h and k, but using $1 and $3 stamps we can make all the values from $1 to $7 (as well as $9). This is maximal, so n(3,2) = 7.

Unfortunately the formula relating n(h,k) to h, k and the values of the stamps has been lost--it was published in one of the government reports but no-one can remember which one, and of the three researchers who started to search for the formula, two died of boredom and the third took a job as a lighthouse keeper because it provided more social stimulation.

The task has now been passed on to you. You doubt the existence of a formula in the first place so you decide to write a program that, for given values of h and k, will determine an optimum set of stamps and the value of n(h,k).

Input

Input will consist of several lines, each containing a value for h and k. The file will be terminated by two zeroes (0 0). For technical reasons the sum of h and k is limited to 9. (The President lost his little finger in a shooting accident and cannot count past 9).

Output

Output will consist of a line for each value of h and k consisting of the k stamp values in ascending order right justified in fields 3 characters wide, followed by a space and an arrow (->) and the value of n(h,k) right justified in a field 3 characters wide.

Sample input

3 2
0 0

Sample output

  1  3 ->  7



題目大意:每組樣例有兩個數據:h和k(以(0,0)為樣例終點)。h為可以貼的郵票上限,k為郵票的所給的面額的種類。要求用k種 1~h張郵票所能組成的最長連續序列(從一開始)。

解題思路:兩層回溯,第一層找出k張郵票不同面額的搭配方式,第二層找出當前搭配方式所能組成的最長連續序列。


#include
#include
#include
#include
using namespace std;
int h, k, ans, temp, num[200], num2[200], vis[200], flag;

void DFS2(int sum, int result, int step) {  //檢驗當前不同面額能否組成result
	if (flag) return;
	if (sum == result) {
		flag = 1;
		return;
	}
	if (step == h) return;
	for (int i = 0; i < k; i++) {
		sum += num[i];
		DFS2(sum, result, step + 1);
		sum -= num[i];
	} 	
}

void DFS(int step) {
	if (step == k) {
		 temp = h;
		do {                    //找出當前面額情況所能組成的最長連續序列
			flag = 0;
			temp++;
			DFS2(0, temp, 0);
		} while (flag);

		if (temp - 1 > ans) {
			ans = temp - 1;
			for (int i = 0; i < k; i++) {
				num2[i] = num[i];
			}
		}
		return;
	}
	for (int i = num[step - 1]; i <= temp + 7; i++) {  //回溯找出不同的面額搭配方式
		if (!vis[i] && i > num[step - 1]) {
			vis[i] = 1;
			num[step] = i;
			DFS(step + 1);
			vis[i] = 0;
		}
	}
}

int main() {
	while (scanf("%d %d", &h, &k) == 2, h || k) {
		ans = 0;
		memset(vis, 0, sizeof(vis));
		memset(num, 0, sizeof(num));
		memset(num2, 0, sizeof(num2));
		flag = 0;
		num[0] = 1;
		vis[1] = 1;
		temp = h;

		DFS(1);

		for (int i = 0; i < k; i++) {   //注意輸出格式
			printf("%3d", num2[i]);
		}
		printf(" ->%3d\n", ans);
	}
	return 0;
}



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