#include #include using namespace std; using namespace atcoder; typedef int64_t lint; #define rep(i, n) for(lint i=0; i; using vvi = vector>; template inline void vin(vector& v) { rep(i, v.size()) cin >> v.at(i); } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template inline void drop(T x) { cout << x << endl; exit(0); } template void vout(vector v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; } constexpr lint LINF = LLONG_MAX/2; int main() { lint N, Q; string S; cin >> N >> Q >> S; lint a=0, b=0, c=0, x, y, z; fenwick_tree fw(N); rep(i, N-1) { if (S[i] == '(' && S[i+1] == ')') { fw.add(i, 1); } } rep(_, Q) { cin >> z; if (z == 1) { cin >> x; x--; if (S[x] == '(') { S[x] = ')'; if (fw.sum(x, x+1) == 1) fw.add(x, -1); if (x != 0 && S[x-1] == '(') fw.add(x-1, 1); } else { S[x] = '('; if (x != 0 && S[x-1] == '(') fw.add(x-1, -1); if (x != N-1 && S[x+1] == ')') fw.add(x, 1); } } else { cin >> x >> y; x--, y--; std::cout << fw.sum(x, y) << '\n'; } } }