#include #include int main(){ std::ios::sync_with_stdio(false); std::cin.tie(0); char check; int N, K, ans; std::cin >> N >> K; std::vector bracket(N+1, 0); for(int i=0; i> input; if(i==K-1) check=input; switch(input){ case '(': ++bracket[i]; break; case ')': --bracket[i+1]; break; } } for(int i=1; i