09 2017 档案
摘要:针对集合的dp 用整数来表示状态 几种常用技巧 判断第i为是否为1 (这个位是从右数起,从0开始。)if (x&(1<<i) {}或者if ((x>>i)&1) {}。 设置第i位为1 x |= 1<<i; 设置第i位为0 x &= ~(1<<i); 切换第i位 x ^= 1<<i; poj3254
阅读全文
摘要:Two players, Stan and Ollie, play, starting with two natural numbers. Stan, the first player, subtracts any positive multiple of the lesser of the two
阅读全文
摘要:The citizens of Bytetown, AB, could not stand that the candidates in the mayoral election campaign have been placing their electoral posters at all pl
阅读全文
摘要:You have N integers, A1, A2, ... , AN. You need to deal with two kinds of operations. One type of operation is to add some given numbe...
阅读全文
搜索
积分与排名
- 积分 - 126107
- 排名 - 11617
随笔分类
- 000---比赛经验&反思(2)
- 000---记录(3)
- 000---算法知识点 (35)
- 0---还不会 (3)
- 0---模板(20)
- 0---水题 (27)
- A-知识图谱(1)
- B-python (2)
- CV---低层视觉(20)
- CV---视觉相关(7)
- CV-图像处理 (2)
- DL---深度学习(3)
- OJ---51nod (2)
- OJ---codeforces (21)
- OJ---Contest Hunter(28)
- OJ---hdu (39)
- OJ---nowcoder (7)
- OJ---poj (66)
- OJ---PTA(30)
- OJ---ZOJ (3)
- OJ---计蒜客(18)
- OJ---洛谷(88)
- OJ---其他(9)
- Paper---阅读笔记(29)
- 动态规划---记忆化搜索(6)
- 动态规划---其他(3)
- 动态规划---区间dp(10)
- 动态规划---树形DP (9)
- 动态规划---数位dp (5)
- 动态规划---线性dp (43)
- 动态规划---状压dp (7)
- 基础---HASH(9)
- 基础---暴力 (17)
- 基础---倍增 (5)
- 基础---递归 (4)
- 基础---二分 (18)
- 基础---分块 (2)
- 基础---规律 (8)
- 基础---模拟 (15)
- 基础---贪心 (17)
- 其他---java大数(5)
- 其他---计算几何 (14)
- 其他---思维 (16)
- 数据结构---单调队列&单调栈(7)
- 数据结构---其他(1)
- 数据结构---树链剖分(2)
- 数据结构---树状数组 (6)
- 数据结构---线段树 (19)
- 数论---博弈论(4)
- 数论---递推(1)
- 数论---概率期望 (4)
- 数论---快速幂 (8)
- 数论---其他 (23)
- 数论---位运算 (9)
- 数论---组合数 (4)
- 搜索---bfs (13)
- 搜索---dfs (22)
- 图论---LCA (5)
- 图论---并查集 (8)
- 图论---连通性(2)
- 图论---网络流 (5)
- 图论---最短路 (22)
- 图论---最小生成树 (6)
- 预处理---dfs序 (4)
- 预处理---离散化(7)
- 字符串---AC自动机(9)
- 字符串---KMP(19)
- 字符串---Manacher(5)
- 字符串---Trie树(5)
- 字符串---后缀数组(8)
- 字符串---后缀自动机(2)
- 字符串---其他 (24)
- 更多
随笔档案
- 2021年8月(1)
- 2021年3月(4)
- 2021年2月(1)
- 2020年12月(2)
- 2020年11月(1)
- 2020年9月(7)
- 2020年8月(9)
- 2020年7月(8)
- 2020年6月(1)
- 2019年8月(1)
- 2019年7月(12)
- 2019年6月(18)
- 2019年5月(13)
- 2019年4月(12)
- 2019年3月(7)
- 2019年2月(33)
- 2019年1月(18)
- 2018年12月(1)
- 2018年11月(42)
- 2018年10月(80)
- 2018年9月(29)
- 2018年8月(25)
- 2018年7月(1)
- 2018年6月(4)
- 2018年5月(2)
- 2018年4月(11)
- 2018年3月(22)
- 2018年1月(9)
- 2017年11月(1)
- 2017年10月(4)
- 2017年9月(4)
- 2017年8月(2)
- 2017年7月(1)
- 2017年5月(1)
- 2017年4月(1)
- 2017年3月(3)
- 2017年2月(4)
- 更多
阅读排行榜
- 1. Windows10-Neo4j安装问题及解决方案(5684)
- 2. 后缀树 & 后缀数组(4036)
- 3. 深度学习超分辨率综述阅读笔记【Deep Learning for Image Super-resolution: A survey】(3140)
- 4. Deep Unfolding Network for Image Super-Resolution【USRNet】【阅读笔记】(2894)
- 5. Exploring Simple Siamese Representation Learning【阅读笔记】(2048)
- 6. 2018ACM-ICPC南京区域赛---AJGIDKM(1934)
- 7. 2017ACM-ICPC沈阳区域赛(1893)
- 8. The Perception-Distortion Tradeoff【阅读笔记】(1565)
- 9. poj2228 Naptime【(环结构)线性DP】(1457)
- 10. GLEAN: Generative Latent Bank for Large-Factor Image Super-Resolution【阅读笔记】(1376)