摘要:
简介 购物单 有点没有讲清楚, 对于编号没有讲清楚. 不过还是挺复杂的. 看题解是, 有约束的背包问题. code 代码抄的, 不过有点理解了 #include<iostream> #include<vector> using namespace std; int max(int m, int n) 阅读全文
摘要:
简介 简单 code #include <iostream> #include <string> #include <vector> #include <algorithm> #include <math.h> #include <sstream> #include <map> using name 阅读全文
摘要:
简介 简单 code #include <iostream> #include <string> #include <vector> #include <algorithm> #include <math.h> #include <map> using namespace std; int main 阅读全文
摘要:
简介 简单 code #include <iostream> #include <string> #include <vector> #include <algorithm> #include <math.h> #include <stdio.h> using namespace std; int 阅读全文
摘要:
简介 简单, 但是, 输出的格式有点错乱 code #include <iostream> #include <string> #include <vector> #include <algorithm> #include <math.h> using namespace std; int main 阅读全文
摘要:
简介 简单 code #include <iostream> #include <string> #include <map> #include <cmath> using namespace std; int main() { string s; map<char, int> m; for(int 阅读全文
摘要:
简介 简单 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( 阅读全文
摘要:
简介 简单 code #include <iostream> #include <algorithm> #include <set> using namespace std; int main() { int n; int t; while(cin >> n){ set<int> s; while( 阅读全文
摘要:
简介 简单 code #include <iostream> #include <string> #include <map> using namespace std; int main() { string s; getline(cin, s); string t; cin >> t; map<c 阅读全文
摘要:
简介 简单 code #include <iostream> #include <string> using namespace std; int main() { string res; string here; while(cin >> res){ here = res; } cout << h 阅读全文