Posted on:
Last modified:
前缀和这个概念可以说是「会者不难,难者不会」,概念本身是很简单的,但是如果不知道的话,好多题就两眼一抹黑了。前缀和即为数组从 0 到当前位置的和,类似的概念还有后缀和,前缀积,后缀积等。
presum[0] = A[0]
presum[i] = presum[i-1] + A[i]
利用前缀和的性质:A[i] + A[i+1] + ... + A[j] = presum[j] - presum[i-1]
前缀和排序,取差值最小值。
有一道题,求两个时间之间的差值,其实是类似的。当差值直接累加计算不好求的时候可以转换为前缀和的差。
也就是使得:presum - (total - presum) = 2 * presum - total
最小。
© 2016-2022 Yifei Kong. Powered by ynotes
All contents are under the CC-BY-NC-SA license, if not otherwise specified.
Opinions expressed here are solely my own and do not express the views or opinions of my employer.
友情链接: MySQL 教程站