# | User | Rating |
---|---|---|
1 | jiangly | 4039 |
2 | tourist | 3841 |
3 | jqdai0815 | 3682 |
4 | ksun48 | 3590 |
5 | ecnerwala | 3542 |
6 | Benq | 3535 |
7 | orzdevinwang | 3526 |
8 | gamegame | 3477 |
9 | heuristica | 3357 |
10 | Radewoosh | 3355 |
# | User | Contrib. |
---|---|---|
1 | cry | 169 |
2 | -is-this-fft- | 165 |
3 | atcoder_official | 160 |
3 | Um_nik | 160 |
5 | djm03178 | 158 |
6 | Dominater069 | 156 |
7 | adamant | 153 |
8 | luogu_official | 152 |
9 | awoo | 151 |
10 | TheScrasse | 147 |
Name |
---|
I guess the problem is array
jaroori
which has size up toN
in your solution, but it's clearly contains some info about edges, so should be up toM
(orN * N
asfrom
andto
)Thanks for pointing it out ! i believe it should give me segmentation fault rather than MLE !
Well, technically it's undefined behavior, so anything could happen =)
Also if you enable some compiler options (like address sanitzer) it should catch this kind of issue. Check this post http://codeforces.net/blog/entry/15547. It could help to catch this kind of bugs locally (if you actually do proper testing locally, if not then start doing ;)).
If you want to understand what exactly going on in your case you can take a look at disassembly: https://godbolt.org/g/sYE6qJ
So it seems that layout for data is
jaroori
and thenparent
. So potentially what could happen that you will override some of theparent
's value and create a loop, e.g.parent[0] = 1
,parent[1] = 0
and then you'll have unbounded recursion. Stack size limit for G++ is 256MB (according to http://codeforces.net/blog/entry/79).So you have some memory allocated besides that + you probably almost hit stack size limit and got MLE before you've got RTE due to stack overflow.
Could be something else, but you can investigate further on your own.