笃_定
笃_定
全部文章
每日一题
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篇)
NC16735(网格图 )
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int mod = 1e9 + 7; struct node{ int dfn; int val; }f[2]...
2020-09-15
0
552
NC24950(Telephone Lines )
感受思路BFS+优先队列 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 1e3 + 10; const int maxm = 2e4 + 10; struct e...
2020-09-14
0
571
[HEOI2014]南园满地堆轻絮
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 6e6 + 10; int n; ll sa, sb, sc, sd, mod; ll a[maxn], ...
2020-09-01
0
539
NC105905(Is It A Tree? )
感受思路 #include <cstdio> #include <iostream> #include <algorithm> #include <cstring> #include <map> #include <set> #...
2020-08-26
0
720
NC110113(Summer Earnings )
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 3e3 + 10; struct node{ ll dis; int u, v; ...
2020-08-25
1
596
NC112798(XOR-pyramid )
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 5e3 + 10; ll f[maxn][maxn]; ll dp[maxn][maxn]; ll a[...
2020-08-24
0
547
NC16430(蚯蚓 )
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 7e6 + 10; struct node{ int dfn; ll x; }; int ...
2020-08-21
1
579
NC19798(区间权值 )
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; const ll mod = 1e9 + 7; const int maxn = 3e5 + 10; int n; ll sum[maxn]...
2020-08-21
0
527
NC22596(Rinne Loves Data Structure )
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; const ll inf = 1e18; const int maxn = 1e3 + 10; int n; map<ll, int&...
2020-08-21
0
507
NC20684(wpy的请求 )
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 1e3 + 10; const int maxm = 1e4 + 10; struct edge{ ...
2020-08-21
0
474
首页
上一页
1
2
3
4
5
6
7
8
下一页
末页