Addition Chains
Addition Chains
An addition chain for n is an integer sequence <a0, a1,a2,…,am> with the following four properties:
a0 = 1
am = n
a0 < a1 < a2 < … < am-1 < am
For each k (1 <= k <= m) there exist two (not necessarily different) integers i and j (0 <= i, j <= k-1) with ak = ai + aj
You are given an integer n. Your job is to construct an addition chain for n with minimal length. If there is more than one such sequence, any one is acceptable.
For example, <1, 2, 3, 5> and <1, 2, 4, 5> are both valid solutions when you are asked for an addition chain for 5.
Input
The input will contain one or more test cases. Each test case consists of one line containing one integer n (1 <= n <= 100). Input is terminated by a value of zero (0) for n.
Output
For each test case, print one line containing the required integer sequence. Separate the numbers by one blank.
Sample Input
571215770Sample Output
1 2 4 51 2 4 6 71 2 4 8 121 2 4 5 10 151 2 4 8 9 17 34 68 77題意:
給你一個數(shù),問你從1開始,最少幾個數(shù)能加到這個數(shù),其中的一個數(shù)(除了1)必須能被其中的兩個數(shù)相加得到。
思路:既然要最少的,那么這些數(shù)越大越好,所以咱們可以倒著搜。
代碼:
總結
以上是生活随笔為你收集整理的Addition Chains的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 新华三“大”结盟 合力推进智慧交通产业升
- 下一篇: Chains (链 )