笃_定
笃_定
全部文章
每日一题
2019 GDUT寒假集训解题报告(专题及训练赛)(14)
2019 GDUT寒假集训解题报告(排位赛)(15)
2020寒假集训(12)
2020牛客寒假算法基础集训营(2)
codeforce比赛题(5)
dfs(1)
dp(1)
二分功能的简单实现(1)
常见数学结论(1)
未归档(1)
每日算法打卡(11)
每日训练(1)
洛谷娱乐场(1)
算法学习过程中的心得(1)
网络赛(1)
随笔(12)
题解(1)
归档
标签
去牛客网
登录
/
注册
笃_定的博客
全部文章
/ 每日一题
(共79篇)
Propagating tree
感受思路 #include <bits/stdc++.h> #define lowbit(x) x & (-x) #define ls o << 1 #define rs o << 1 | 1 using namespace std; typedef lo...
2020-11-09
1
680
求和
感受思路 #include <bits/stdc++.h> #define lowbit(x) x & (-x) using namespace std; typedef long long ll; typedef pair<int, int> pii; const ...
2020-11-09
0
762
Tree Requests(Update)
感受更新 思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> pii; const int inf = 0x3f3f3f3f;//106...
2020-11-08
0
668
选点
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int inf = 0x3f3f3f3f;//1061109567 大约1e9 const ll INF = 0x3f3f3f3...
2020-11-08
0
673
Military Problem
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 2e5 + 10; int n, q; vector<int> G[maxn]; int in...
2020-11-08
0
607
NC111975(Legacy)
感受思路 #include<bits/stdc++.h> #define ls o << 1 #define rs o << 1 | 1 using namespace std; typedef long long ll; const int maxn = 1e6...
2020-11-07
0
679
Perfect Security
思路 #include<bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 3e5 + 10; int tr[maxn * 32][2], cnt; int n; int a[maxn], ...
2020-11-04
0
585
最大异或和
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> pii; const int maxn = 600000 + 10; int roo...
2020-11-04
0
511
Xor-MST
感受思路 #include<bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 2e5 + 10; int tr[maxn * 32][2], cnt; int L[maxn * 32], ...
2020-11-04
0
580
The XOR Largest Pair
思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> pii; const int maxn = 1e5 + 10; int tr[maxn ...
2020-11-02
0
612
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页