热门标签
更多>
搜索结果
查询Tags标签: 223A,共有 2条记录-
Bracket Sequence CodeForces - 223A
原题链接 考察:栈,模拟模拟栈匹配,不匹配的留入栈里.然后栈里都是不匹配的坐标,相邻之间都是匹配的. #include <iostream> #include <cstring> using namespace std; const int N = 100010; char s[N],res[N]; int match[N],top,stk[N],sum[N]; int main() {s…
2021/8/30 23:06:41 人评论 次浏览 -
Bracket Sequence CodeForces - 223A
原题链接 考察:栈,模拟模拟栈匹配,不匹配的留入栈里.然后栈里都是不匹配的坐标,相邻之间都是匹配的. #include <iostream> #include <cstring> using namespace std; const int N = 100010; char s[N],res[N]; int match[N],top,stk[N],sum[N]; int main() {s…
2021/8/30 23:06:41 人评论 次浏览