摘要:
紫书例题 题目链接 https://vjudge.net/problem/UVA-12096 AC 代码 #include <iostream> #include <set> #include <map> #include <vector> #include <stack> #include <al 阅读全文
摘要:
#include <iostream> #include <string> #include <cctype> #include <vector> #include <map> #include <algorithm> using namespace std; map<string, int> cn 阅读全文
摘要:
#include <iostream> #include <string> #include <set> #include <sstream> using namespace std; set<string> dict; // string 集合 int main() { string s, buf 阅读全文
摘要:
紫书例题 题目链接 https://vjudge.net/problem/UVA-156 AC 代码 #include <iostream> #include <string> #include <cctype> #include <vector> #include <map> #include < 阅读全文
摘要:
题目链接 https://vjudge.net/problem/UVA-227 代码 #include <iostream> #include <vector> #include <map> using namespace std; struct Point { int x, y; Point (i 阅读全文