笃_定
笃_定
全部文章
分类
2019 GDUT寒假集训解题报告(专题及训练赛)(14)
2019 GDUT寒假集训解题报告(排位赛)(15)
2020寒假集训(12)
2020牛客寒假算法基础集训营(2)
codeforce比赛题(5)
dfs(1)
dp(1)
二分功能的简单实现(1)
常见数学结论(1)
未归档(1)
每日一题(77)
每日算法打卡(11)
每日训练(1)
洛谷娱乐场(1)
算法学习过程中的心得(1)
网络赛(1)
随笔(12)
题解(1)
归档
标签
去牛客网
登录
/
注册
笃_定的博客
全部文章
(共160篇)
NC23619(小A的柱状图 )
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 1e6 + 10; int sum[maxn], h[maxn]; int l[maxn], r[maxn...
2020-08-21
0
427
NC16590(乌龟棋 )
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 350 + 10; int dp[maxn][45][45][45]; ///dp[pos][x][y][...
2020-08-21
0
476
NC23051(华华和月月种树 )
感受思路 #include <bits/stdc++.h> #define ls o << 1 #define rs o << 1 | 1 using namespace std; typedef long long ll; const int maxn = 1e...
2020-08-19
1
473
NC20272([SCOI2009]生日快乐 )
感受思路复杂度分析 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 100; double x, y; int n; double dfs(double x, do...
2020-08-19
0
784
NC20252([SCOI2007]压缩 )
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 100; int dp[maxn][maxn][2];///dp[l][r][1]表示区间[l,r]中有...
2020-08-19
0
485
NC200532(装货物 )
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 3e5 + 10; const ll mod = 998244353; int n, x; ll w, u...
2020-08-18
0
565
NC14250(MMSet2 )
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 3e5 + 10; const ll mod = 998244353; struct edge{ ...
2020-08-18
0
492
NC19810(kingdom )
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 8e3 + 10; ll ans[maxn], dp[maxn][maxn]; /**ans[i]表示i个...
2020-08-17
0
494
NC16645(矩阵取数游戏 )
感受思路 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 100000 + 10; inline __int128 read(){ __int128 x =...
2020-08-17
0
700
NC19814(最短路 )
感受思路复杂度分析 #include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 100000 + 10; const int maxm = 200000 + 500; stru...
2020-08-17
0
493
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页