摘要: 1 树状数组 1.单点$+x$,区间求和 理解 代码 #include <cstdio> #include <cstring> #include <algorithm> #include <cmath> //#define lowbit(i) i&(-i) using namespace std; 阅读全文
posted @ 2020-09-14 18:40 刘子闻 阅读(93) 评论(0) 推荐(0)
摘要: 1 1043 题面 给定一个塔,求从上面向下走的最大值。 题解 dp.转移方程写好。 代码 #include <cstdio> #include <cstring> #include <cmath> #include <algorithm> using namespace std; int n; i 阅读全文
posted @ 2020-09-14 13:00 刘子闻 阅读(82) 评论(0) 推荐(0)