上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 182 下一页
摘要: 《The Imitation Game》是一部非常好的电影,讲述了人工智能之父——阿兰图灵的传奇一生。重点讲述了他通过破译德国的通讯密码缩短了二战的持续时间,因而拯救了无数生命的伟大事迹。强烈推荐大家去看一看,这可是豆瓣评分8.6的好片啊!另外,《The Imitation Game》也是当年图灵发... 阅读全文
posted @ 2015-02-16 01:10 金海峰 阅读(1086) 评论(1) 推荐(0) 编辑
摘要: Google Code Jam 2014 Round 1B Problem Bhdu 2089hdu 3555uestc 250 (原1307)hdu 3652hdu 3709Light OJ 1140Light OJ 1032Codeforces 55Dpoj 3252Light OJ 1068 阅读全文
posted @ 2015-02-11 15:47 金海峰 阅读(218) 评论(3) 推荐(0) 编辑
摘要: 枚举+数位dp注意处理数字为0和1的情况。#include #include using namespace std;#define D(x) const int MAX_DIGIT = 20;long long n;int f[MAX_DIGIT];long long memoize[MAX_DI... 阅读全文
posted @ 2015-02-11 15:46 金海峰 阅读(449) 评论(0) 推荐(0) 编辑
摘要: 基本的数位dp,需要记录前面除以13的余数。#include #include using namespace std;#define D(x) xconst int MAX_DIGIT = 35;int n, m;int f[MAX_DIGIT];int memoize[MAX_DIGIT][2]... 阅读全文
posted @ 2015-02-09 14:58 金海峰 阅读(479) 评论(0) 推荐(0) 编辑
摘要: windy数基本的数位DP,需要判断当前位是否为起始位。#include #include #include using namespace std;#define D(x) xconst int MAX_DIGIT = 35;int n, m;int f[MAX_DIGIT];int memoiz... 阅读全文
posted @ 2015-01-29 20:42 金海峰 阅读(201) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 182 下一页