#include #include #include #include #include namespace atcoder { namespace internal { #ifndef _MSC_VER template using is_signed_int128 = typename std::conditional::value || std::is_same::value, std::true_type, std::false_type>::type; template using is_unsigned_int128 = typename std::conditional::value || std::is_same::value, std::true_type, std::false_type>::type; template using make_unsigned_int128 = typename std::conditional::value, __uint128_t, unsigned __int128>; template using is_integral = typename std::conditional::value || is_signed_int128::value || is_unsigned_int128::value, std::true_type, std::false_type>::type; template using is_signed_int = typename std::conditional<(is_integral::value && std::is_signed::value) || is_signed_int128::value, std::true_type, std::false_type>::type; template using is_unsigned_int = typename std::conditional<(is_integral::value && std::is_unsigned::value) || is_unsigned_int128::value, std::true_type, std::false_type>::type; template using to_unsigned = typename std::conditional< is_signed_int128::value, make_unsigned_int128, typename std::conditional::value, std::make_unsigned, std::common_type>::type>::type; #else template using is_integral = typename std::is_integral; template using is_signed_int = typename std::conditional::value && std::is_signed::value, std::true_type, std::false_type>::type; template using is_unsigned_int = typename std::conditional::value && std::is_unsigned::value, std::true_type, std::false_type>::type; template using to_unsigned = typename std::conditional::value, std::make_unsigned, std::common_type>::type; #endif template using is_signed_int_t = std::enable_if_t::value>; template using is_unsigned_int_t = std::enable_if_t::value>; template using to_unsigned_t = typename to_unsigned::type; } // namespace internal } // namespace atcoder #include #include namespace atcoder { template struct fenwick_tree { using U = internal::to_unsigned_t; public: fenwick_tree() : _n(0) {} fenwick_tree(int n) : _n(n), data(n) {} void add(int p, T x) { assert(0 <= p && p < _n); p++; while (p <= _n) { data[p - 1] += U(x); p += p & -p; } } T sum(int l, int r) { assert(0 <= l && l <= r && r <= _n); return sum(r) - sum(l); } private: int _n; std::vector data; U sum(int r) { U s = 0; while (r > 0) { s += data[r - 1]; r -= r & -r; } return s; } }; } // namespace atcoder using namespace std; using namespace atcoder; int main() { int n, q; cin >> n >> q; string s; cin >> s; fenwick_tree ft(n - 1); for (int i = 0; i < n - 1; ++i) { if (s[i] == '(' && s[i + 1] == ')') { ft.add(i, 1); } } for (int qi = 0; qi < q; ++qi) { int type; cin >> type; if (type == 1) { int i; cin >> i; --i; if (i != 0 && s[i - 1] == '(' && s[i] == ')') { ft.add(i - 1, -1); } if (i != n - 1 && s[i] == '(' && s[i + 1] == ')') { ft.add(i, -1); } if (s[i] == '(') { s[i] = ')'; } else { s[i] = '('; } if (i != 0 && s[i - 1] == '(' && s[i] == ')') { ft.add(i - 1, 1); } if (i != n - 1 && s[i] == '(' && s[i + 1] == ')') { ft.add(i, 1); } } else { int l, r; cin >> l >> r; --l; cout << ft.sum(l, r - 1) << '\n'; } } }