Hello! I have recently been solving a task, and I have encountered some weird behavior on codeforces. I have submitted 2 solutions: https://mirror.codeforces.com/contest/1304/submission/343285292 https://mirror.codeforces.com/contest/1304/submission/343285436 One of them received the "Idleness limit exceeded on test 1" verdict, while the other got "Accepted". However, the only difference between these 2 submissions is the following line: "int elemCount = lcaList.size();" vs "int elemCount = 2*n-1;". Can anyone explain to me what is causing this behavior?



