| # | User | Rating |
|---|---|---|
| 1 | Benq | 3857 |
| 2 | jiangly | 3810 |
| 3 | maroonrk | 3534 |
| 4 | tourist | 3528 |
| 5 | Kevin114514 | 3510 |
| 6 | turmax | 3411 |
| 7 | Um_nik | 3387 |
| 8 | Radewoosh | 3367 |
| 9 | heuristica | 3322 |
| 10 | strapple | 3317 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 157 |
| 2 | maspy | 150 |
| 3 | nik_exists | 145 |
| 4 | Um_nik | 144 |
| 5 | Errichto | 139 |
| 6 | adamant | 136 |
| 7 | maroonrk | 134 |
| 8 | DNR | 132 |
| 9 | AmShZ | 131 |
| 10 | Dominater069 | 129 |
| Name |
|---|



10 acaccaaaca
Correct output: Yes
Your output: No
"Do stress testing to generate counter test case"
Thank you!
not sure if this helps but i stalled this problem thinking it was a lot of implementation as it allowed O(n^2) (i solved d before solving it), but it can be simply done in O(n) using a stack. my idea of it was that it has to be equal to a regular bracket sequence, so i just used a stack to check if it was equal to the topmost element in the stack, and if so i would remove the topmost element, and otherwise i would add the new element in. if its empty in the end it is valid. 364685342