結果

問題 No.2029 Swap Min Max Min
ユーザー とりゐとりゐ
提出日時 2022-06-29 22:14:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,154 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 119,424 KB
最終ジャッジ日時 2024-09-15 19:54:11
合計ジャッジ時間 7,942 ms
ジャッジサーバーID
(参考情報)
judge3 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 100 ms
86,144 KB
testcase_06 AC 134 ms
100,352 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 85 ms
81,280 KB
testcase_11 WA -
testcase_12 AC 109 ms
90,240 KB
testcase_13 WA -
testcase_14 AC 161 ms
113,280 KB
testcase_15 WA -
testcase_16 AC 162 ms
113,536 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 161 ms
112,768 KB
testcase_20 AC 163 ms
113,024 KB
testcase_21 AC 164 ms
112,768 KB
testcase_22 AC 161 ms
113,536 KB
testcase_23 AC 210 ms
117,760 KB
testcase_24 AC 213 ms
118,272 KB
testcase_25 AC 162 ms
113,152 KB
testcase_26 AC 162 ms
113,664 KB
testcase_27 AC 41 ms
52,352 KB
testcase_28 AC 50 ms
59,904 KB
testcase_29 AC 43 ms
52,480 KB
testcase_30 AC 46 ms
57,600 KB
testcase_31 AC 51 ms
60,160 KB
testcase_32 WA -
testcase_33 AC 42 ms
52,224 KB
testcase_34 AC 42 ms
52,096 KB
testcase_35 AC 41 ms
51,968 KB
testcase_36 AC 42 ms
51,712 KB
testcase_37 AC 41 ms
52,096 KB
testcase_38 AC 201 ms
113,536 KB
testcase_39 AC 160 ms
113,536 KB
testcase_40 AC 150 ms
109,056 KB
testcase_41 AC 199 ms
114,816 KB
testcase_42 AC 202 ms
114,432 KB
testcase_43 AC 158 ms
112,512 KB
testcase_44 AC 213 ms
118,912 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(int,input().split()))
x=n//2

if n%2==0:
  c1=[0]*n
  c2=[0]*n
  big1=list(range(1,n+1,2))[::-1]
  small1=list(range(2,n+1,2))[::-1]
  big2=list(range(2,n+1,2))[::-1]
  small2=list(range(1,n+1,2))[::-1]
  for i in range(n):
    if a[i]<=x:
      c1[i]=small1.pop()
      c2[i]=small2.pop()
    else:
      c1[i]=big1.pop()
      c2[i]=big2.pop()
  
  print(x,min(inversion(c1,flag=False),inversion(c2,flag=False)))

else:
  c=[0]*n
  small=list(range(2,n+1,2))[::-1]
  big=list(range(1,n+1,2))[::-1]
  for i in range(n):
    if a[i]<=x:
      c[i]=small.pop()
    else:
      c[i]=big.pop()
  
  print(x,inversion(c,flag=False))
0