非常好的一个题,可以比赛时想到的状态太奇葩,不方便转移,就一直没能AC。

思路:dp(i, j)表示已经考虑了前i位,前i位的和为j的贡献。如果当前的选择一直是最大的选择,那么就必须从0~下一位的最大值之间选择,所以必须增加一个标记表示当前是否被限制。否则就可以从0~15中任选一个填充该位,这种情况就是可能被重复访问的,因为要填充剩下的位,每一位都能填0~15,所以记忆一下,当再次访问时就返回。

AC代码

#include <cstdio>
#include <cmath>
#include <cctype>
#include <algorithm>
#include <cstring>
#include <utility>
#include <string>
#include <iostream>
#include <map>
#include <set>
#include <vector>
#include <queue>
#include <stack>
using namespace std;
#pragma comment(linker, "/STACK:1024000000,1024000000")
#define eps 1e-10
#define inf 0x3f3f3f3f
#define PI pair<int, int>
typedef long long LL;
const int maxn = 8 + 5;
const LL mod = (LL)0xffffffff+1;
const int w[] = {6,2,5,5,4,5,6,3,7,6,6,5,4,5,5,4};
LL dp[maxn][maxn*7];
LL a[maxn];
LL dfs(int pos, int sum, int flag) {
	if(pos < 0) return sum;
	if(!flag && dp[pos][sum] != -1) return dp[pos][sum];
	int n = flag ? a[pos] : 15;
	LL ans = 0;
	for(int i = 0; i <= n; ++i)
		ans += dfs(pos-1, sum+w[i], flag&&(i==n));
	if(!flag) dp[pos][sum] = ans;
	return ans;
}

LL solve(LL x) {
	if(x < 0) return 0;
	memset(a, 0, sizeof(a));
	int cur = 0;
	while(x > 0) {
		a[cur++] = x % 16;
		x /= 16;
	}
	return dfs(7, 0, 1);
}

LL get(char *s) {
	LL res = 0;
	LL v = 1;
	for(int i = 7; i >= 0; --i) {
		if(s[i] >= 'A' && s[i] <= 'F') {
			res += (s[i] - 'A' + 10) * v;
		}
		else res += (s[i] - '0') * v;
		v *= 16;
	}
	return res;
}

int main() {
	memset(dp, -1, sizeof(dp));
	int T;
	scanf("%d", &T);
	LL n;
	char s[10];
	while(T--) {
		scanf("%lld%s", &n, s);
		LL res = get(s);
		--n;
		if(res + n >= mod) {
			printf("%lld\n", solve((res+n)%mod) + solve(mod-1) - solve(res-1));
		}
		else printf("%lld\n", solve(res+n) - solve(res-1));
	}
	return 0;
}

如有不当之处欢迎指出!

最新文章

  1. 1014 : Trie树 hihocoder
  2. 传统MySQL+ Memcached架构遇到的问题
  3. jquery 全选 全不选 反选
  4. BZOJ1230 [Usaco2008 Nov]lites 开关灯
  5. OSX学习01之更新头像
  6. c#获得目标服务器中所有数据库名、表名、列名的实现代码
  7. C#常用简单线程实例
  8. 页面javascript 和jquery 的一些用法
  9. MVC每层的职责
  10. &lt;php&gt;文件操作*(重要)
  11. PHP标记
  12. 如何利用百度音乐播放器的API接口来获取高音质歌曲
  13. 码工具通过ICP备案
  14. 【Android Developers Training】 82. 序言:传输数据时减少对电池寿命的影响
  15. 学会WCF之试错法——安全配置报错分析
  16. Gvim:unable to load python
  17. 外显子分析思路总结(Exome Sequencing Analysis review)
  18. Confluence 6 禁用或者重新启用一个任务
  19. cmd返回上一级和根目录
  20. java web 中 filter 与 servlet的关系

热门文章

  1. 函数式编程--使用lambda表达式
  2. Python简单爬虫Requests
  3. 用CSS写气泡
  4. Matlab实用技巧
  5. Python实现XML文件解析
  6. 深度优化LNMP之MySQL
  7. ferror,perror,cleaner
  8. bzoj1193: [HNOI2006]马步距离
  9. excel中的数据导出为properties和map的方法
  10. 如何学习java