lifehappy
lifehappy
全部文章
分类
未归档(1)
每日一题(2)
题解(78)
归档
标签
去牛客网
登录
/
注册
lifehappy的博客
算法竞赛蒟蒻
全部文章
(共81篇)
[CQOI2015]选数
[CQOI2015]选数 /* Author : lifehappy */ #include <bits/stdc++.h> using namespace std; typedef long long ll; const int N = 2e6 + 10, mod = 1...
2020-11-10
3
495
brz的函数
brz的函数 /* Author : lifehappy */ #include <bits/stdc++.h> using namespace std; const int N = 5e4 + 10; int prime[N], mu[N], ans[N], cnt, n...
2020-11-10
6
594
[SDOI2014]数表
[SDOI2014]数表 /* Author : lifehappy */ #include <bits/stdc++.h> using namespace std; typedef long long ll; const int N = 1e5 + 10; int pr...
2020-11-09
2
597
[SDOI2015]约数个数和
[SDOI2015]约数个数和 /* Author : lifehappy */ #include <bits/stdc++.h> using namespace std; typedef long long ll; const int N = 5e4 + 10; int...
2020-11-09
4
572
[SDOI2017]数字表格
[SDOI2017]数字表格 /* Author : lifehappy */ #include <bits/stdc++.h> using namespace std; typedef long long ll; const int N = 1e6 + 10, mod =...
2020-11-09
3
682
Rinne Loves Sequence
Rinne Loves Sequence 思路 写完后看了一下ac代码,果然就我的最暴力了。 代码 /* Author : lifehappy */ #include <bits/stdc++.h> using namespace std; typedef long long...
2020-11-09
3
758
数论题单(牛客)
Rinne Loves Sequence 题解 HRY and mobius 题解 小V的和式(这道题目好难啊) 有用的 LCM 小D的Lemon 题解 解方程 题解
2020-11-07
1
605
Lady Layton with Math(杜教筛)
Lady Layton with Math /* Author : lifehappy */ #include <bits/stdc++.h> using namespace std; typedef long long ll; const int N = 2e6 + 10...
2020-11-07
3
686
求和
求和 利用dfs序在子树上的连续性,然后通过单点修改,区间查询即可,这点只要用一颗树状数组即可完成。 /* Author : lifehappy */ #include <bits/stdc++.h> using namespace std; typedef long long ...
2020-11-07
4
730
Tree Requests(dsu on tree)
Tree Requests 经典的树上启发式合并题目了(其实就是瞎暴力)。 对于一颗有根树,我们先做一次dfs找到每个节点的重儿子,然后在答案统计的时候优先遍历轻儿子,不保留答案,最后遍历重儿子保留答案。 这颗树显然我们要维护的信息就是每一层字母的奇偶性,所以我们直接在每一层开一个30大小的bits...
2020-11-07
5
735
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页