Vasiljko's blog

By Vasiljko, history, 4 years ago, In English

I've been solving 1311C - Выполни комбо and when i used memset I received TLE 73574138 but when I changed to iterative method I received AC 73575826. This is not the first time happening. What the reason behind this?

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

»
4 years ago, # |
  Vote: I like it +16 Vote: I do not like it

Every time you use memset with the third parameter $$$sizeof(a)$$$, it fills the whole array (or matrix) with corresponding values. But because the number of test cases in this problem can be up to $$$10^4$$$, you can fill up $$$10^4 \cdot 2 \cdot 10^5 \cdot 26 = 52 \cdot 10^9$$$ elements in the worst case. Despite the fact that memset is a very fast function, $$$52$$$ billion is a huge number of operations. But when you fill up all values iteratively, you can be sure that you will do this at most $$$\sum n \cdot 26$$$ times (i.e. $$$2 \cdot 10^5 \cdot 26 = 5.2 \cdot 10^6$$$ times.