Блог пользователя hiddenanonymous

Автор hiddenanonymous, 3 года назад, По-английски

Problem : https://infoarena.ro/problema/xortransform
Why this code passed with 100 points and this code got only 26 points?
The only difference is that in the AC code I did dp[N]={} while in partial AC code I just did dp[N].

  • Проголосовать: нравится
  • +1
  • Проголосовать: не нравится

»
3 года назад, # |
  Проголосовать: нравится +1 Проголосовать: не нравится

Most Probably because doing dp[N]={} initializes all indices with 0, while not doing it initializes them with random garbage values.