DP——AtCoder Beginner Contest 050 #D - Xor Sum

  • 题目链接:http://abc050.contest.atcoder.jp/tasks/arc066_b

  • 题意:求有多少个数字对 <u,v> <script type="math/tex" id="MathJax-Element-13"> </script>满足 0u,vN 并且存在两个整数 a,b 使得 a+b=u,a xor b=v

  • 分析:我们发现只要 a,b 不超过 N ,那么a xor b 也不会超过 N ,所以关键就是要保证 a+b 不超过 N ,那么问题就转换成找到有多少组 a,b 使得 a+bN

  • 图解:
    这里写图片描述

  • AC代码:

/*************************************************************************
    > File Name: test.cpp
    > Author: Akira 
    > Mail: qaq.febr2.qaq@gmail.com 
 ************************************************************************/

#include<bits/stdc++.h>
typedef long long LL;
typedef unsigned long long ULL;
typedef long double LD;
#define MST(a,b) memset(a,b,sizeof(a))
#define CLR(a) MST(a,0)
#define Sqr(a) ((a)*(a))
using namespace std;

#define MaxN 100001
#define MaxM MaxN*10
#define INF 0x3f3f3f3f
#define PI 3.1415926535897932384626
const int mod = 1E9+7;
const double eps = 1e-6;
#define bug cout<<88888888<<endl;
#define debug(x) cout << #x" = " << x << endl;
LL N; 
map<LL,LL> DP; 
LL dp(LL x)
{
    if(DP[x]) return DP[x];
    else
    {
        return DP[x] = ( dp(x/2) + dp((x-1)/2) + dp((x-2)/2) )%mod;
    }
}
int main()
{
    //std::ios::sync_with_stdio(false);
    DP[0] = 1;
    DP[1] = 2;
    cin >> N;
    cout << dp(N) << endl;
    system("pause");
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值