I was solving this problem-https://mirror.codeforces.com/problemset/problem/1613/E This is my solution-https://mirror.codeforces.com/contest/1613/submission/138713743 Can pls someone tell me what is wrong here.
I was solving this problem-https://mirror.codeforces.com/problemset/problem/1613/E This is my solution-https://mirror.codeforces.com/contest/1613/submission/138713743 Can pls someone tell me what is wrong here.
| # | User | Rating |
|---|---|---|
| 1 | Benq | 3792 |
| 2 | VivaciousAubergine | 3647 |
| 3 | Kevin114514 | 3603 |
| 4 | jiangly | 3583 |
| 5 | strapple | 3515 |
| 6 | tourist | 3470 |
| 7 | dXqwq | 3436 |
| 8 | Radewoosh | 3415 |
| 9 | Otomachi_Una | 3413 |
| 10 | Um_nik | 3376 |
| # | User | Contrib. |
|---|---|---|
| 1 | Qingyu | 158 |
| 2 | adamant | 152 |
| 3 | Um_nik | 146 |
| 4 | Dominater069 | 144 |
| 5 | errorgorn | 141 |
| 6 | cry | 139 |
| 7 | Proof_by_QED | 136 |
| 8 | YuukiS | 135 |
| 9 | chromate00 | 134 |
| 9 | TheScrasse | 134 |
| Name |
|---|



The problem is in your check function, you are copying a (vector<char> v )and (vector<vector<int>> vis) every time you call check function. To avoid this make v and vis vector global.
Thanks a lot for helping me!
The problem in this line:
bool check(int i,int j,vector<vector<char>> v,vector<vector<int>> vis)Your
vector<vector<char>> vandvector<vector<int>> visare copied every time, when you call this function. Instead you should write somthing like:bool check(int i,int j,vector<vector<char>> &v,vector<vector<int>> &vis)there is your AC solution with this fix 138716320
And write "\n" instead endl, because endl flushing output, what takes time (sorry for my bad english)
Thanks a lot for helping me! I solved it.