刘思萌lsm
刘思萌lsm
全部文章
分类
归档
标签
去牛客网
登录
/
注册
刘思萌lsm的博客
全部文章
(共16篇)
题解 | #还是畅通工程#
#include <iostream> #include <algorithm> using namespace std; const int MAXN = 10000+10; struct Edge { int from; int to; int...
2024-02-07
0
159
题解 | #第一题#
#include <iostream> #include <sys/types.h> using namespace std; const int MAXN = 1000000 + 10; int father[MAXN]; int height[MAXN]; int vi...
2024-02-07
0
163
题解 | #连通图#
#include <iostream> #include <sys/types.h> using namespace std; const int MAXN = 1000+10; int father[MAXN]; int height[MAXN]; void Initi...
2024-02-07
0
165
题解 | #畅通工程#
#include <iostream> using namespace std; const int MAXN = 1000 + 10; int father[MAXN]; int height[MAXN]; void Initial(int n) { for (int i ...
2024-02-07
0
160
题解 | #最小邮票数#
#include <iostream> using namespace std; int post[50]; int dp[20][105]; int main() { int M,N; while(cin>>M>>N){ for...
2024-02-07
0
143
题解 | #采药#
#include <iostream> using namespace std; int t[105]; int v[105]; int dp[1005][1005]; int main() { int T,M; while(cin>>T>>M)...
2024-02-07
0
167
题解 | #Coincidence#
#include <iostream> using namespace std; int dp[105][105]; int main() { string str1,str2; cin >> str1 >>str2; for(int ...
2024-02-06
0
168
题解 | #拦截导弹#
#include <iostream> using namespace std; int arr[28]; int Fun(int n){ int ans; if(n==0){ ans = 1; }else{ ans = 1; ...
2024-02-06
0
186
题解 | #最大连续子序列#
#include <iostream> using namespace std; const int MAXN = 1e4+10; int arr[MAXN]; int answer[MAXN]; int Fun(int n){ int index; //最大值下标 i...
2024-02-06
0
208
题解 | #神奇的口袋#
#include <iostream> using namespace std; int arr[45]; int DFS(int num,int n){ if(num==0){ return 1; } if(num<0 || n==0){...
2024-02-05
0
197
首页
上一页
1
2
下一页
末页