2017年腾讯笔试题目

题目转载自:http://blog.csdn.net/uncle_gy/article/details/77977436

2017年9月13日: 

腾讯有一道机试题: 
大概意思是: 
小Q非常富有,拥有非常多的硬币,小Q的拥有的硬币是有规律的,对于所有的非负整数K,小Q恰好各有两个数值为2^k,的硬币,所以小Q拥有的硬币是1,1,2,2,4,4……,小Q卖东西需要支付n元钱,请问小Q想知道有多少种组合方案。 
输入:一个n (1<=n<=10^18),代表要付的钱 

输出:表示小Q可以拼凑的方案数目


数位dp是一个不错的解法

但是我想用记忆化搜索来做:

思路

对于n可以选择一个最接近的硬币选择使用0,1,2个硬币去填充。然后递归到下一层去处理,采用记忆化搜索的方法。

计算复杂度带log,递归次数跟数位dp差不多。


#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define ll long long
struct Node{
    ll l;
    int d;
};
bool operator <(const Node a,const Node b) {
    if(a.d == b.d) return a.l < b.l;
    return a.d < b.d;
}
map haha;
int c = 0;
int getAns(ll n,int d){
    c++;
    if(n == 0){
        return 1;
    }
    Node x;
    x.l = n;
    x.d = d;
    if(haha.find(x) != haha.end()) return haha[x];

    ll t = 0;
    for(int i = 0;i <= d; i++){
        t += (1ll<= 0; i--){
        t = 1ll< n) continue;
        if(t<=n) ans+=getAns(n-t,i-1);
        t += t;
        if(t<=n) ans+=getAns(n-t,i-1);
        ans += getAns(n,i-1);
        break;
    }
    haha[x] = ans;
    return ans;

}


int main(){
    ll n;
    while(cin>>n){
        c = 0;
        cout< s;
        for(int i = 0;i <=n/2;++i){
            ll p = (n-i)^i;
            s.insert(p);
        }
        cout<





你可能感兴趣的:(##我只想找工作)