結果
問題 | No.1282 Display Elements |
ユーザー | tamato |
提出日時 | 2020-11-06 21:39:44 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 281 ms / 2,000 ms |
コード長 | 1,243 bytes |
コンパイル時間 | 136 ms |
コンパイル使用メモリ | 82,436 KB |
実行使用メモリ | 167,952 KB |
最終ジャッジ日時 | 2024-07-22 12:28:45 |
合計ジャッジ時間 | 3,426 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,352 KB |
testcase_01 | AC | 38 ms
52,352 KB |
testcase_02 | AC | 42 ms
52,096 KB |
testcase_03 | AC | 39 ms
51,840 KB |
testcase_04 | AC | 39 ms
52,608 KB |
testcase_05 | AC | 39 ms
51,968 KB |
testcase_06 | AC | 38 ms
52,096 KB |
testcase_07 | AC | 42 ms
52,352 KB |
testcase_08 | AC | 37 ms
52,352 KB |
testcase_09 | AC | 37 ms
52,608 KB |
testcase_10 | AC | 43 ms
60,160 KB |
testcase_11 | AC | 44 ms
60,416 KB |
testcase_12 | AC | 37 ms
52,608 KB |
testcase_13 | AC | 46 ms
60,160 KB |
testcase_14 | AC | 47 ms
62,336 KB |
testcase_15 | AC | 251 ms
158,776 KB |
testcase_16 | AC | 129 ms
110,592 KB |
testcase_17 | AC | 211 ms
134,260 KB |
testcase_18 | AC | 146 ms
113,792 KB |
testcase_19 | AC | 107 ms
97,032 KB |
testcase_20 | AC | 118 ms
95,672 KB |
testcase_21 | AC | 281 ms
167,560 KB |
testcase_22 | AC | 134 ms
96,516 KB |
testcase_23 | AC | 274 ms
167,952 KB |
ソースコード
mod = 1000000007 eps = 10**-9 def main(): import sys input = sys.stdin.readline 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 lower_bound(self, w): if w <= 0: return 0 x = 0 k = 1 << (self.size.bit_length() - 1) while k: if x + k <= self.size and self.tree[x + k] < w: w -= self.tree[x + k] x += k k >>= 1 return x + 1 N = int(input()) A = list(map(int, input().split())) B = list(map(int, input().split())) A.sort() AB = A + B AB = sorted(list(set(AB))) v2i = {v: i+1 for i, v in enumerate(AB)} bit = Bit(2*N) ans = 0 for a, b in zip(A, B): bit.add(v2i[b], 1) if v2i[a] > 1: ans += bit.sum(v2i[a] - 1) print(ans) if __name__ == '__main__': main()