我是靠谱客的博主 高贵雨,最近开发中收集的这篇文章主要介绍HDU5831 Rikka with Parenthesis II 2016多校第八场11HDU5831 Rikka with Parenthesis II (2016多校第八场11),觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
HDU5831 Rikka with Parenthesis II (2016多校第八场11)
题目
大意:给出一串括号,问对换一对后能否匹配
题解
第一个)和最后一个(交换,然后用栈验证
注意点:
1. ))((这种改变一对影响两对,比赛的时候我们队就卡了一下这里
2. 有正确的交换完变成错误的,例如()
代码
#include <iostream>
#include <string>
#include <algorithm>
#include <iomanip>
using namespace std;
int main()
{
ios::sync_with_stdio(false);
int s[100001], n, top, i, j, T, left1, right0;
char t[100001];
cin>>T;
while(T--)
{
cin>>n;
cin>>t;
top = -1;
left1 = -1;
right0 = n;
for(i = 0; i < n; ++i)
{
if(left1 == -1 && t[i] == ')')
left1 = i;
if(t[i] == '(')
right0 = i;
}
swap(t[left1], t[right0]);
for(i = 0; i < n; ++i)
{
if(t[i] == '(')
s[++top] = 0;
else
if(top >= 0 && s[top] == 0) --top;
else s[++top] = 1;
}
if(top == -1)
cout<<"Yes"<<endl;
else
cout<<"No"<<endl;
}
return 0;
}
最后
以上就是高贵雨为你收集整理的HDU5831 Rikka with Parenthesis II 2016多校第八场11HDU5831 Rikka with Parenthesis II (2016多校第八场11)的全部内容,希望文章能够帮你解决HDU5831 Rikka with Parenthesis II 2016多校第八场11HDU5831 Rikka with Parenthesis II (2016多校第八场11)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复