結果

問題 No.2089 置換の符号
ユーザー とりゐとりゐ
提出日時 2022-09-30 22:29:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 612 bytes
コンパイル時間 491 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,848 KB
最終ジャッジ日時 2024-06-02 06:05:15
合計ジャッジ時間 2,387 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,032 KB
testcase_01 AC 35 ms
52,460 KB
testcase_02 AC 33 ms
53,136 KB
testcase_03 AC 32 ms
52,556 KB
testcase_04 AC 33 ms
52,884 KB
testcase_05 AC 32 ms
52,760 KB
testcase_06 AC 34 ms
53,780 KB
testcase_07 AC 33 ms
53,352 KB
testcase_08 AC 33 ms
52,348 KB
testcase_09 AC 33 ms
53,152 KB
testcase_10 AC 33 ms
52,268 KB
testcase_11 AC 33 ms
52,544 KB
testcase_12 AC 31 ms
52,864 KB
testcase_13 AC 33 ms
52,612 KB
testcase_14 AC 34 ms
52,596 KB
testcase_15 AC 33 ms
53,636 KB
testcase_16 AC 33 ms
53,760 KB
testcase_17 AC 32 ms
53,228 KB
testcase_18 AC 32 ms
53,220 KB
testcase_19 AC 32 ms
53,972 KB
testcase_20 AC 32 ms
52,828 KB
testcase_21 AC 33 ms
52,672 KB
testcase_22 AC 31 ms
53,412 KB
testcase_23 AC 37 ms
59,644 KB
testcase_24 AC 40 ms
60,832 KB
testcase_25 AC 40 ms
61,264 KB
testcase_26 AC 42 ms
60,792 KB
testcase_27 AC 49 ms
68,468 KB
testcase_28 AC 61 ms
74,140 KB
testcase_29 AC 66 ms
76,848 KB
testcase_30 AC 67 ms
76,652 KB
testcase_31 AC 66 ms
76,544 KB
testcase_32 AC 65 ms
76,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Bit:
  def __init__(self,n):
    self.size=n
    self.tree=[0]*(n+1)
  
  def sum(self, i):
    s=0
    while i>0:
      s+=self.tree[i]
      i-=i&-i
    return s
  
  def add(self,i,x):
    while i<=self.size:
      self.tree[i]+=x
      i+=i&-i

def inversion(a,flag=True):
  n=len(a)
  if flag:
    b=[(a[i],i+1) for i in range(n)]
    b.sort(key=lambda x:x[0])
    a=[i[1] for i in b]

  bit=Bit(n)
  cnt=0
  for i in range(n):
    bit.add(a[i],1)
    cnt+=i+1-bit.sum(a[i])
  return cnt

n=int(input())
a=list(map(lambda x:int(x)-1,input().split()))
if inversion(a)%2==0:
  print(1)
else:
  print(-1)
0