CF1593G.Changing Brackets

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

A sequence of round and square brackets is given. You can change the sequence by performing the following operations:

  1. change the direction of a bracket from opening to closing and vice versa without changing the form of the bracket: i.e. you can change '(' to ')' and ')' to '('; you can change '[' to ']' and ']' to '['. The operation costs 00 burles.
  2. change any square bracket to round bracket having the same direction: i.e. you can change '[' to '(' but not from '(' to '['; similarly, you can change ']' to ')' but not from ')' to ']'. The operation costs 11 burle.

The operations can be performed in any order any number of times.

You are given a string ss of the length nn and qq queries of the type "l r" where 1l<rn1 \le l < r \le n . For every substring s[lr]s[l \dots r] , find the minimum cost to pay to make it a correct bracket sequence. It is guaranteed that the substring s[lr]s[l \dots r] has an even length.

The queries must be processed independently, i.e. the changes made in the string for the answer to a question ii don't affect the queries jj ( j>ij > i ). In other words, for every query, the substring s[lr]s[l \dots r] is given from the initially given string ss .

A correct bracket sequence is a sequence that can be built according the following rules:

  • an empty sequence is a correct bracket sequence;
  • if "s" is a correct bracket sequence, the sequences "(s)" and "[s]" are correct bracket sequences.
  • if "s" and "t" are correct bracket sequences, the sequence "st" (the concatenation of the sequences) is a correct bracket sequence.

E.g. the sequences "", "(()[])", "[()()]()" and "(())()" are correct bracket sequences whereas "(", "[(])" and ")))" are not.

输入格式

The first line contains one integer tt ( 1t1001 \le t \le 100 ) — the number of test cases. Then tt test cases follow.

For each test case, the first line contains a non-empty string ss containing only round ('(', ')') and square ('[', ']') brackets. The length of the string doesn't exceed 10610^6 . The string contains at least 22 characters.

The second line contains one integer qq ( 1q21051 \le q \le 2 \cdot 10^5 ) — the number of queries.

Then qq lines follow, each of them contains two integers ll and rr ( 1l<rn1 \le l < r \le n where nn is the length of ss ). It is guaranteed that the substring s[lr]s[l \dots r] has even length.

It is guaranteed that the sum of the lengths of all strings given in all test cases doesn't exceed 10610^6 . The sum of all qq given in all test cases doesn't exceed 21052 \cdot 10^5 .

输出格式

For each test case output in a separate line for each query one integer xx ( x0x \ge 0 ) — the minimum cost to pay to make the given substring a correct bracket sequence.

输入输出样例

  • 输入#1

    3
    ([))[)()][]]
    3
    1 12
    4 9
    3 6
    ))))))
    2
    2 3
    1 4
    []
    1
    1 2

    输出#1

    0
    2
    1
    0
    0
    0

说明/提示

Consider the first test case. The first query describes the whole given string, the string can be turned into the following correct bracket sequence: "([()])()[[]]". The forms of the brackets aren't changed so the cost of changing is 00 .

The second query describes the substring ")[)()]". It may be turned into "(()())", the cost is equal to 22 .

The third query describes the substring "))[)". It may be turned into "()()", the cost is equal to 11 .

The substrings of the second test case contain only round brackets. It's possible to prove that any sequence of round brackets having an even length may be turned into a correct bracket sequence for the cost of 00 burles.

In the third test case, the single query describes the string "[]" that is already a correct bracket sequence.

首页