loveC--
loveC--
全部文章
分类
归档
标签
去牛客网
登录
/
注册
loveC--的博客
全部文章
(共58篇)
题解 | #点菜问题#
0-1背包问题 #include<iostream> #include<vector> #include<algorithm> #include<limits> using namespace std; int main() { int c, n...
2024-03-21
0
233
题解 | #最大连续子序列#
利用map来跟踪最大子序列和中所有元素 #include<iostream> #include<map> #include<cstring> #include<algorithm> #include<limits> using namesp...
2024-03-21
0
184
题解 | #最大子矩阵#
思路很难想,纯纯的背诵题 #include<iostream> #include<vector> #include<limits> #include<algorithm> using namespace std; #define N 105 lon...
2024-03-21
0
186
题解 | #最长公共子序列(一)#
动态规划板子 #include<iostream> #include<vector> #include<algorithm> using namespace std; int dp[1002][1002]; int main() { int n, m;...
2024-03-21
0
168
题解 | #合唱队形#
#include<iostream> using namespace std; #define N 105 int arr[N]; //从左往右的最大递增子序列 int dp1[N]; //从右往左的最大递增子序列 int dp2[N]; int main() { in...
2024-03-18
0
200
题解 | #谁是你的潜在朋友#
#include<iostream> #include<map> using namespace std; int main() { int n,m; map<int, int> mymap1,mymap2; while (cin >> n ...
2024-03-18
0
213
题解 | #开门人和关门人#
stoi方法,用于将字符串化为整数 #include <iostream> #include<string> #include<vector> #include<algorithm> using namespace std; struct huma...
2024-03-18
0
203
题解 | #子串计算#
感觉实质为数学题 #include <iostream> #include<string> #include<map> using namespace std; int main() { string str; map<string, int >...
2024-03-18
0
187
题解 | #查找学生信息#
map的简单使用,没啥好说的 #include <iostream> #include<map> using namespace std; struct student { string cno; string name; string gender; int ag...
2024-03-18
0
146
题解 | #Jungle Roads#
思路很简单,题目有点难懂 #include<iostream> #include<vector> #include<algorithm> using namespace std; int father[27]; struct Node { int from;...
2024-03-17
0
214
首页
上一页
1
2
3
4
5
6
下一页
末页