上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 94 下一页
摘要: 简介 动态规划, 用到了最长子序列长度. 用两个for循环就可以得到最长子序列. 参考链接 https://blog.csdn.net/feengg/article/details/80866483 code #include <iostream> #include <vector> #includ 阅读全文
posted @ 2021-06-25 11:03 HDU李少帅 阅读(41) 评论(0) 推荐(0) 编辑
摘要: 简介 简单 code #include <iostream> #include <string> #include <set> #include <algorithm> using namespace std; int main() { string str; set<string> s; whil 阅读全文
posted @ 2021-06-25 10:25 HDU李少帅 阅读(56) 评论(0) 推荐(0) 编辑
摘要: 简介 简单 code #include <iostream> #include <string> #include <map> using namespace std; int main() { string s; while(cin >> s) { map<char, int> m; for(au 阅读全文
posted @ 2021-06-25 10:24 HDU李少帅 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 简介 恶心 4、循环记录时,只以第一次出现的顺序为准,后面重复的不会更新它的出现时间,仍以第一次为准. 浪费爷爷的时间. 明明只有8个空间, 却按照从头开始查找. code #include <iostream> #include <string> #include <vector> #includ 阅读全文
posted @ 2021-06-24 22:10 HDU李少帅 阅读(63) 评论(0) 推荐(0) 编辑
摘要: 简介 购物单 有点没有讲清楚, 对于编号没有讲清楚. 不过还是挺复杂的. 看题解是, 有约束的背包问题. code 代码抄的, 不过有点理解了 #include<iostream> #include<vector> using namespace std; int max(int m, int n) 阅读全文
posted @ 2021-06-22 20:34 HDU李少帅 阅读(61) 评论(0) 推荐(0) 编辑
摘要: 简介 简单 code #include <iostream> #include <string> #include <vector> #include <algorithm> #include <math.h> #include <sstream> #include <map> using name 阅读全文
posted @ 2021-06-22 18:49 HDU李少帅 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 简介 简单 code #include <iostream> #include <string> #include <vector> #include <algorithm> #include <math.h> #include <map> using namespace std; int main 阅读全文
posted @ 2021-06-22 18:44 HDU李少帅 阅读(44) 评论(0) 推荐(0) 编辑
摘要: 简介 简单 code #include <iostream> #include <string> #include <vector> #include <algorithm> #include <math.h> #include <stdio.h> using namespace std; int 阅读全文
posted @ 2021-06-22 18:39 HDU李少帅 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 简介 简单, 但是, 输出的格式有点错乱 code #include <iostream> #include <string> #include <vector> #include <algorithm> #include <math.h> using namespace std; int main 阅读全文
posted @ 2021-06-22 18:35 HDU李少帅 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 简介 简单 code #include <iostream> #include <string> #include <map> #include <cmath> using namespace std; int main() { string s; map<char, int> m; for(int 阅读全文
posted @ 2021-06-22 16:30 HDU李少帅 阅读(53) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 94 下一页