摘要: 简介 购物单 有点没有讲清楚, 对于编号没有讲清楚. 不过还是挺复杂的. 看题解是, 有约束的背包问题. 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) 编辑
摘要: 简介 简单 code #include <iostream> #include <string> using namespace std; int main() { string s; while(getline(cin, s)) { string h; for(int i=0; i<s.size( 阅读全文
posted @ 2021-06-22 16:19 HDU李少帅 阅读(49) 评论(0) 推荐(0) 编辑
摘要: 简介 简单 code #include <iostream> #include <algorithm> #include <set> using namespace std; int main() { int n; int t; while(cin >> n){ set<int> s; while( 阅读全文
posted @ 2021-06-22 16:11 HDU李少帅 阅读(43) 评论(0) 推荐(0) 编辑
摘要: 简介 简单 code #include <iostream> #include <string> #include <map> using namespace std; int main() { string s; getline(cin, s); string t; cin >> t; map<c 阅读全文
posted @ 2021-06-22 16:01 HDU李少帅 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 简介 简单 code #include <iostream> #include <string> using namespace std; int main() { string res; string here; while(cin >> res){ here = res; } cout << h 阅读全文
posted @ 2021-06-22 15:47 HDU李少帅 阅读(39) 评论(0) 推荐(0) 编辑