Xbalanque's blog

By Xbalanque, history, 6 hours ago, In English

I have gotten so many hacks ? My rating dropping so fast because of that. I don't know who is hacking my solutions, if you are reading this, stop hacking me, get a life.

Thanks!

  • Vote: I like it
  • -17
  • Vote: I do not like it

»
4 hours ago, # |
  Vote: I like it +13 Vote: I do not like it

Well, if u write a correct code u won't get hacked

»
4 hours ago, # |
  Vote: I like it +1 Vote: I do not like it

1) Looking at your Line Breaks solution, you are re declaring a string array of length 2e5+10 (even though MaxN is 50) every test case, which, along with the hack using the maximum possible test cases, causes you to TLE. (tip, you are given n, declare an array / vector of size N rather than MaxN, or at least make sure your MaxN is correct)

2) Whether you believe hacking has a place in CF or not, saying that anyone who hacks you needs to "get a life" is just rude.