I have written this code for problem 494A Div 1 Treasure Link==>https://codeforces.net/problemset/problem/494/A code==>55202990 My idea is that start from left and always have the differences between '(' and ')' (How many '(' with no ')' match we have ==> name this variable l)
and then every time we get to an '#' we get the numbers of continuous ')' after that '#' until we face a '('. then the answer for that '#' is cnt(number of continuous ')' from '#') — l .
But my code gets WA for test case 10 what is the problem with my observation?