QOJ.ac

QOJ

IDProblemSubmitterResultTimeMemoryLanguageFile sizeSubmit timeJudge time
#314224#7894. Many Many Headshy233WA 1ms5848kbC++141.1kb2024-01-25 14:43:012024-01-25 14:43:01

Judging History

你现在查看的是最新测评结果

  • [2024-01-25 14:43:01]
  • 评测
  • 测评结果:WA
  • 用时:1ms
  • 内存:5848kb
  • [2024-01-25 14:43:01]
  • 提交

answer

#include<bits/stdc++.h>
#define ll long long
using namespace std;
const int N=1000005;
const ll mod=998244353;
inline int rd()
{
	int x=0; bool f=1;
	char ch=getchar();
	for(;ch<'0'||ch>'9';ch=getchar())
		if(ch=='-') f=0;
	for(;ch>='0'&&ch<='9';ch=getchar())
		x=x*10+(ch^48);
	return f?x:-x;
}
#define ck(x) ((x)=='('||(x)==')')
char s[N];
int stk[N],tp;
int lst[N];
bool solve(int l,int r)
{
	int m=(r-l+1)/2-1;
	for(int i=l;i<=l+m;i++)
		if(ck(s[i])!=ck(s[r-i+l]))
			return 0;
	for(int i=l+1;i<=l+m;i++)
		if(ck(s[i])==ck(s[i-1]))
			return 0;
	return 1;
}
bool vis[2];
int main()
{
	int t=rd();
	while(t--)
	{
		vis[0]=vis[1]=0;
		scanf("%s",s+1);
		int n=strlen(s+1);
		for(int i=1;i<=n;i++)
		{
			if(tp&&ck(s[stk[tp]])==ck(s[i]))
				lst[stk[tp]]=i,tp--,s[i]=(ck(s[i])?')':']');
			else
				stk[++tp]=i,s[i]=(ck(s[i])?'(':'[');
		}
		if(tp)
		{
			printf("No\n");
			continue;
		}
		bool bb=1;
		int l=1,r;
		while(l<=n)
		{
			r=lst[l];
			bb&=solve(l,r);
			if(vis[ck(l)]) bb=0;
			vis[ck(l)]=1;
			l=r+1;
		}
		if(bb)
			printf("Yes\n");
		else
			printf("No\n");
	}
	return 0;
}

Details

Tip: Click on the bar to expand more detailed information

Test #1:

score: 100
Accepted
time: 1ms
memory: 5848kb

input:

6
))
((()
[()]
()[()]()
([()])
([])([])

output:

Yes
No
Yes
No
Yes
No

result:

ok 6 token(s): yes count is 3, no count is 3

Test #2:

score: -100
Wrong Answer
time: 1ms
memory: 3868kb

input:

2
(([([[([
]]))])]])]

output:

No
No

result:

wrong answer expected YES, found NO [1st token]