What is wrong with my Solution

Revision en1, by ganesh_6, 2022-07-04 15:17:08

I am solving https://codeforces.com/contest/1556/problem/C. I got an idea to use Stacks and Prefix Sums to find the answer, However, it is failing on test case 13.

Submission

My Approach: 1. Iterate from left to right and calculate prefix sum of length upto index i. 2. Iterate from left to right and insert extra open brackets in stack with it's location i. 3. When we get extra closing, pop the stack and match closing with opening. 4. In every iteration insert matching subarray in a list, because we can use this to calculate number of ways to group matching subarrays.

Tags #strings, stack, prefix sum

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en2 English ganesh_6 2022-07-04 15:18:05 8
en1 English ganesh_6 2022-07-04 15:17:08 720 Initial revision (published)