摘要:
刚开始直接拿set录数据做,以为是个水题,没想到WA了,只得了12分 WA代码: #include <stdio.h> #include <memory.h> #include <math.h> #include <string> #include <string.h> #include <vect 阅读全文
摘要:
深度优先搜索算法,注意删除前导路径,就可以AC了 阅读全文
摘要:
bfs,需要注意用set记录走过的局面,我用的是set<string> condition,看其他人的博客有用set<string> visited 的,变量名起得更加贴切 只要注意这个点,细心一点就可以AC了 阅读全文
摘要:
字符串处理,采用递归的方法 需要注意的是最后两个测试数据的括号是不匹配的,这要求我们在proc函数处理完之后,如果tmp(记录括号的字符串变量)的size大于0时,直接把tmp拉进去递归 阅读全文
摘要:
记录好缺少部分的坐标,用next_permutation进行穷举,就可以得到答案了 阅读全文
摘要:
这题想了一个小时,也只得了66分,并且是一道看起来很简单的题…… 贴出代码,留给日后的自己 阅读全文
摘要:
#include using namespace std; void scan(__int128 &x)//输入 { x = 0; int f = 1; char ch; if((ch = getchar()) == '-') f = -f; else x = x*10 + ch-'0'; while((ch = getchar()) >=... 阅读全文