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

Автор jarvis307, история, 4 года назад, По-английски

Hello Codeforces!!

I have many times came across scanline algorithm in tutorials but don't know about that. I googled it and the only thing I came across was the 'Polygon filling algorithms'.

I would be grateful if someone could guide how this algorithm is used in competitive programming questions or provide with some useful links

TIA!

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

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

I said the same a few days ago in codechef.The blogs that have been written so far in codeforces or topcoder does not make the topic crystal clear.I would really like someone to write a beautiful blog on this.

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

I guess its as i say :

We have an array $$$a$$$ of $$$n$$$ integers, we want to calculate $$$\sum\limits_{1 \le i < j \le n} a_i \cdot a_j$$$.

My approach is that lets calculate array $$$sl$$$ of length $$$n$$$ such that $$$sl_k = \sum\limits_{1 \le i < j \le k} a_i \cdot a_j$$$ and $$$sl_1 = 0$$$ by definition, then $$$sl_i$$$ can be calculated using $$$sl_{i-1}$$$, its a DP form of scanline, you can instead of storing array $$$sl$$$, just remember the previous one. For some cases its useful to not to store them, for example when we calculate LIS using monotonically increasing stack.

I'm not sure, correct me if i'm not.

  • »
    »
    4 года назад, # ^ |
    Rev. 2   Проголосовать: нравится +11 Проголосовать: не нравится

    In this case, using this identity would be easier I think

    $$$\sum\limits_{1\leqslant{i<j}\leqslant{n}}a_{i}a_{j} = \dfrac{(\sum\limits_{i = 1}^{n}a_{i})^2 - \sum\limits_{i = 1}^{n}a_i^2}{2}$$$
    • »
      »
      »
      4 года назад, # ^ |
        Проголосовать: нравится +8 Проголосовать: не нравится

      Nice one, i haven't seen this before(its really easy to see why it works), Thanks.

      But in fact the point was something else.

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

You should contact the MAME team. It uses scanlines to emulate the Arcade screen.

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

It's an algorithm used to find the resultant array after performing several queries on an array of the form : add a number to each element of the array in a particular range. Formally, given an array a[] and several queries of the form (l, r, val) add val to each element of subarray a[l...r] and finally output the array a[] after performing all the queries.

Algorithm: For each query (l, r, val) add val to a[l] and -val to a[r+1] and finally take the prefix sum array. That would give you the resultant array.

Most likely you have used this algo without realising that it has a fancy name.

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

Most of the time "scanline" means "sweep line" (something about processing events in some order),so there is a terminology problem in the community.