QOJ.ac

QOJ

Time Limit: 1 s Memory Limit: 1024 MB Total points: 100

#3734. Parenthesis

Statistics

Bobo has a balanced parenthesis sequence $P = p_1p_2\dots p_n$ of length $n$ and $q$ questions.

The $i$-th question is whether $P$ remains balanced after $p_{a_i}$ and $p_{b_i}$ swapped. Note that questions are individual so that they have no affect on others.

Parenthesis sequence $S$ is balanced if and only if:

  1. $S$ is empty;
  2. or there exists balanced parenthesis sequence $A, B$ such that $S = AB$;
  3. or there exists balanced parenthesis sequence $S'$ such that $S = (S')$.

Input

The input contains at most $30$ sets. For each set:

The first line contains two integers $n, q$ ($2 \leq n \leq 10^5, 1 \leq q \leq 10^5$).

The second line contains $n$ characters $p_1p_2\dots p_n$.

The $i$-th of the last $q$ lines contains $2$ integers $a_i, b_i$ ($1 \leq a_i, b_i \leq n, a_i \neq b_i$).

Output

For each question, output "Yes" if $P$ remains balanced, or "No" otherwise.

Sample Input

4 2
(())
1 3
2 3
2 1
()
1 2

Sample Output

No
Yes
No

Discussions

About Discussions

The discussion section is only for posting: Editorials, General Discussions (problem-solving strategies, alternative approaches), and Off-topic conversations.

This is NOT for reporting issues! If you want to report bugs or errors, please use the Issues section below.

Open Discussions 0
No discussions in this category.

Issues

About Issues

If you find any issues with the problem (statement, scoring, time/memory limits, test cases, etc.), you may submit an issue here. A problem moderator will review your issue.

Guidelines:

  1. This is not a place to publish discussions, editorials, or requests to debug your code. Issues are only visible to you and problem moderators.
  2. Do not submit duplicated issues. Submitting multiple issues may cause your account to be banned.
  3. Issues must be filed in English or Chinese only.
Active Issues 0
No issues in this category.
Closed/Resolved Issues 0
No issues in this category.