CF BUDDY
← Problems·

1838D · Bracket Walk

2100 · data structures, greedy, strings

Problem: There is a string ss of length nn consisting of the characters '(' and ')'. You are walking on this string. You start by standing on top of the first character of ss, and you want to make a sequence of moves such that you end on the nn-th character. In one step, you can move one space to the left (if you are not standing on the first character), or one space to the right (if you are not standing on the last character). You may not stay in the same place, however you may visit any character, including the first and last character, any number of times.

At each point in time, you write down the character you are currently standing on. We say the string is walkable if there exists some sequence of moves that take you from the first character to the last character, such that the string you write down is a regular bracket sequence.

A regular bracket sequence is a bracket sequence that can be transformed into a correct arithmetic expression by inserting characters '1' and '+' between the original characters of the sequence. For example, bracket sequences "()()", "(())" are regular (the resulting expressions are: "(1)+(1)", "((1+1)+1)"), and ")(" and "(" are not.

One possible valid walk on s=(())()))s=\mathtt{(())()))}. The red dot indicates your current position, and the red string indicates the string you have written down. Note that the red string is a regular bracket sequence at the end of the process.

You are given qq queries. Each query flips the value of a character from '(' to ')' or vice versa. After each query, determine whether the string is walkable.

Queries are cumulative, so the effects of each query carry on to future queries.

Input Format: The first line of the input contains two integers nn and qq (1n,q21051 \le n, q \le 2\cdot 10^5) — the size of the string and the number of queries, respectively.

The second line of the input contains a string ss of size nn, consisting of the characters '(' and ')' — the initial bracket string.

Each of the next qq lines contains a single integer ii (1in1\le i \le n) — the index of the character to flip for that query.

Output Format: For each query, print "YES" if the string is walkable after that query, and "NO" otherwise.

You can output the answer in any case (upper or lower). For example, the strings "yEs", "yes", "Yes", and "YES" will be recognized as positive responses.

Note: In the first example:

  • After the first query, the string is (())()()(). This string is a regular bracket sequence, so it is walkable by simply moving to the right.
  • After the second query, the string is (())()))(). If you move right once, then left once, then walk right until you hit the end of the string, you produce the string (((())()))(), which is a regular bracket sequence.
  • After the third query, the string is ()))()))(). We can show that this string is not walkable.

Sample Cases

Case 1

Input

10 9
(())()()))
9
7
2
6
3
6
7
4
8

Output

YES
YES
NO
NO
YES
NO
YES
NO
NO

Case 2

Input

3 2
(()
2
3

Output

NO
NO

Similar problems

00:00:00
Loading editor…
Welcome! I'm your coding tutor for this problem. Use the chips below to reveal stored hints or get AI feedback on your code. I'll guide you step by step — never giving away the solution.

Sign in to unlock AI tutor feedback