码迷,mamicode.com
首页 > 其他好文 > 详细

codeforces 630C - Lucky Numbers 递推思路

时间:2017-11-20 13:27:03      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:its   class   div   source   log   out   pre   ace   span   

630C - Lucky Numbers

题目大意:

给定数字位数,且这个数字只能由7和8组成,问有多少种组合的可能性

思路:

假设为1位,只有7和8;两位的时候,除了77,78,87,88之外还哇哦加上前面只有7和8的情况,一共是6位。所以递推式不难写出dp[i]=pow(2,i)+dp[i-1];

代码:

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
ll ans[56];
void init () {
    ans[1]=2;
    for(int i=2; i<=55; ++i) {
        ans[i]=pow(2,i)+ans[i-1];
    }
}
int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
    init();
    int n;
    cin>>n;
    cout<<ans[n]<<endl;
    return 0;
}

codeforces 630C - Lucky Numbers 递推思路

标签:its   class   div   source   log   out   pre   ace   span   

原文地址:http://www.cnblogs.com/lemonbiscuit/p/7865418.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!