HDU 1394(Minimum Inversion Number)

spoiler posted @ 2011年4月12日 02:18 in ACM经典题目之线段树 , 1667 阅读

题目大意:给你一个连续的自然数序列,
a1, a2, ..., an-1, an (where m = 0 - the initial seqence)
a2, a3, ..., an, a1 (where m = 1)
a3, a4, ..., an, a1, a2 (where m = 2)
...
an, a1, a2, ..., an-1 (where m = n-1)

中逆序数最大的是多少。

其实用树状数组求这个是非常方便速度的,但是为了锻炼线段树  我还是用线段树写了。

程序+部分注释:

 


登录 *


loading captcha image...
(输入验证码)
or Ctrl+Enter