a = 0
while max(V) > 0:
C = [ 0 ] * max(V)
for x in V:
if x%2==0:
a += C[x//2]
else:
C[x//2] += 1
V = [ x//2 for x in V ]
print(a)
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3823 |
3 | Benq | 3738 |
4 | Radewoosh | 3633 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3390 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 160 |
5 | -is-this-fft- | 158 |
6 | adamant | 157 |
6 | awoo | 157 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | djm03178 | 153 |
a = 0
while max(V) > 0:
C = [ 0 ] * max(V)
for x in V:
if x%2==0:
a += C[x//2]
else:
C[x//2] += 1
V = [ x//2 for x in V ]
print(a)
Name |
---|
Consider 2 numbers and . Write them down in binary (Assume both of them to be digit binary number (Incase their length is unequal , pad leading zeroes to the shorter one).
Let be the minimum index such that
So is an inversion pair if and only if index of index of and
So for any , and and and after that they are both equal so each pair gets counted towards as an inversion exactly once.