結果

問題 No.1282 Display Elements
ユーザー ygd.ygd.
提出日時 2020-11-06 22:38:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 669 ms / 2,000 ms
コード長 956 bytes
コンパイル時間 346 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 126,712 KB
最終ジャッジ日時 2024-07-22 13:21:38
合計ジャッジ時間 5,708 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 38 ms
52,096 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 41 ms
52,096 KB
testcase_04 AC 37 ms
52,352 KB
testcase_05 AC 35 ms
51,840 KB
testcase_06 AC 37 ms
52,224 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 35 ms
52,224 KB
testcase_09 AC 37 ms
51,840 KB
testcase_10 AC 50 ms
61,184 KB
testcase_11 AC 48 ms
61,568 KB
testcase_12 AC 38 ms
52,352 KB
testcase_13 AC 48 ms
60,416 KB
testcase_14 AC 53 ms
62,976 KB
testcase_15 AC 585 ms
124,076 KB
testcase_16 AC 247 ms
91,648 KB
testcase_17 AC 487 ms
106,464 KB
testcase_18 AC 303 ms
93,028 KB
testcase_19 AC 287 ms
125,304 KB
testcase_20 AC 290 ms
125,596 KB
testcase_21 AC 669 ms
126,452 KB
testcase_22 AC 499 ms
126,712 KB
testcase_23 AC 630 ms
125,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT:
    def __init__(self, n):
        self.n = n
        self.data = [0]*(n+1)
 
    def to_sum(self, i):
        s = 0
        while i > 0:
            s += self.data[i]
            i -= (i & -i)
        return s
 
    def add(self, i, x):
        while i <= self.n:
            self.data[i] += x
            i += (i & -i)
 
    def get(self, i, j):
        return self.to_sum(j)-self.to_sum(i-1)

N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
C = []
for i in range(N):
  C.append((A[i],"A",i))
  C.append((B[i],"B",i))
C.sort()
AA = [-1 for _ in range(N)]; BB = [-1 for _ in range(N)]
cnt = 0
prev = 0
for i in range(2*N):
  ID = C[i][2]
  if C[i][0] != prev:
    cnt += 1
  prev = C[i][0]
  if C[i][1] == "A":
    AA[ID] = cnt
  else:
    BB[ID] = cnt
#print(AA)
#print(BB)
AA.sort()
Tree = BIT(2*N)
ans = 0
for i in range(N):
  Tree.add(BB[i],1)
  if AA[i] > 1:
    ans += Tree.get(1,AA[i]-1)
print(ans)
0