上一页 1 2 3 4 5 6 7 8 ··· 32 下一页
摘要: 紫书例题 题目链接 https://vjudge.net/problem/UVA-12096 AC 代码 #include <iostream> #include <set> #include <map> #include <vector> #include <stack> #include <al 阅读全文
posted @ 2021-01-03 22:00 模糊计算士 阅读(98) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> #include <cctype> #include <vector> #include <map> #include <algorithm> using namespace std; map<string, int> cn 阅读全文
posted @ 2021-01-03 20:26 模糊计算士 阅读(127) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> #include <set> #include <sstream> using namespace std; set<string> dict; // string 集合 int main() { string s, buf 阅读全文
posted @ 2021-01-03 20:22 模糊计算士 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 紫书例题 题目链接 https://vjudge.net/problem/UVA-156 AC 代码 #include <iostream> #include <string> #include <cctype> #include <vector> #include <map> #include < 阅读全文
posted @ 2021-01-03 20:04 模糊计算士 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 题目链接 https://vjudge.net/problem/UVA-227 代码 #include <iostream> #include <vector> #include <map> using namespace std; struct Point { int x, y; Point (i 阅读全文
posted @ 2021-01-03 00:58 模糊计算士 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 以 UVa455 为例: 在这里查找题目: 然后选择左边的选项, 注意,点击前面的用户名效果更好,是单击,然后右边就会出现相应的测试用例, 之后把测试用例在你自己的程序中跑一下,把获得的输出粘到这里: 然后点击下面这个 Get Accepted Output 按钮,左边也就会出现相应的正确的输出,再 阅读全文
posted @ 2020-12-31 22:47 模糊计算士 阅读(607) 评论(0) 推荐(1) 编辑
摘要: 题目链接 https://vjudge.net/problem/UVA-455 代码 #include <iostream> #include <cstring> using namespace std; int main() { int N; // 测试用例的个数 char s[100]; int 阅读全文
posted @ 2020-12-31 22:36 模糊计算士 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 题目链接 https://vjudge.net/problem/UVA-1225 代码 #include <iostream> #include <string.h> int res[10]; // 用于保存最后的结果 int main() { int T; // 一共需要测试 T 组数据,T 的范 阅读全文
posted @ 2020-12-30 18:51 模糊计算士 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 题目链接 https://vjudge.net/problem/UVA-1586 代码 #include<iostream> #include<string.h> int main() { int T, count; char s[100]; // 字符串最大长度为 80,所以这里就稍微多分配了一点 阅读全文
posted @ 2020-12-30 18:02 模糊计算士 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 题目链接 https://vjudge.net/problem/UVA-1585 代码 #include <stdio.h> #include <string.h> #define maxn 100 char s[maxn]; int T; // 一共输入 T 组数据 int main() { in 阅读全文
posted @ 2020-12-29 22:36 模糊计算士 阅读(88) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 32 下一页