求求offer的土拨鼠很无聊
求求offer的土拨鼠很无聊
全部文章
分类
归档
标签
去牛客网
登录
/
注册
求求offer的土拨鼠很无聊的博客
全部文章
(共88篇)
题解 | #大整数排序#
#include <vector> #include <iostream> #include <algorithm> using namespace std; const int maxn=1000; struct BigInteger{ int dig...
2023-03-21
0
283
题解 | #最大上升子序列和#
#include <iostream> using namespace std; const int maxn=1000; int a[maxn]; int dp[maxn]; void init(){ for(int i=0;i<maxn;i++){ a[...
2023-03-20
0
252
题解 | #拦截导弹#
#include <iostream> using namespace std; const int maxn=100; int dp[maxn]; int a[maxn]; void init(){ for(int i=0;i<maxn;i++) dp[i]=1; } i...
2023-03-20
0
313
题解 | #最大子矩阵#
#include <iostream> using namespace std; const int maxn=100; int ary[maxn]; int matrix[maxn][maxn]; int total[maxn][maxn]; int dp[maxn]; int max...
2023-03-20
0
274
题解 | #最大序列和#
#include <algorithm> #include <cstring> #include <iostream> using namespace std; typedef long long ll ; const int maxn=1000001; ll d...
2023-03-20
0
306
题解 | #I Wanna Go Home#
#include <queue> #include <iostream> #include <vector> using namespace std; const int maxn=1000; const int MAX=10000; struct edge{ ...
2023-03-20
0
331
题解 | #最短路径问题#
#include <iostream> #include <queue> #include <vector> using namespace std; const int maxn=1001; struct edge{ int to; int di...
2023-03-20
0
317
题解 | #继续畅通工程#
#include <iostream> #include <queue> using namespace std; const int maxn=100; int father[maxn]; int height[maxn]; int findfather(int x){ ...
2023-03-18
0
406
题解 | #还是畅通工程#
#include <iostream> #include <queue> using namespace std; const int maxn=100; int father[maxn]; int height[maxn]; int findfather(int x){ ...
2023-03-18
0
257
题解 | #Head of a Gang#
#include <iostream> #include <map> using namespace std; const int maxn=100; int father[maxn]; int height[maxn]; int weight[maxn]; int gang...
2023-03-18
0
263
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页