結果

問題 No.743 Segments on a Polygon
ユーザー maspymaspy
提出日時 2020-03-20 03:07:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 780 ms / 2,000 ms
コード長 1,582 bytes
コンパイル時間 218 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 35,704 KB
最終ジャッジ日時 2024-05-08 03:42:55
合計ジャッジ時間 9,737 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 755 ms
35,452 KB
testcase_01 AC 780 ms
35,580 KB
testcase_02 AC 769 ms
35,580 KB
testcase_03 AC 771 ms
35,576 KB
testcase_04 AC 776 ms
35,704 KB
testcase_05 AC 768 ms
35,580 KB
testcase_06 AC 753 ms
35,580 KB
testcase_07 AC 756 ms
35,584 KB
testcase_08 AC 756 ms
35,576 KB
testcase_09 AC 614 ms
35,576 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/ python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines


class BinaryIndexedTree():
    def __init__(self, seq):
        self.size = len(seq)
        self.depth = self.size.bit_length()
        self.build(seq)

    def build(self, seq):
        data = seq
        size = self.size
        for i, x in enumerate(data):
            j = i + (i & (-i))
            if j < size:
                data[j] += data[i]
        self.data = data

    def __repr__(self):
        return self.data.__repr__()

    def get_sum(self, i):
        data = self.data
        s = 0
        while i:
            s += data[i]
            i -= i & -i
        return s

    def add(self, i, x):
        data = self.data
        size = self.size
        while i < size:
            data[i] += x
            i += i & -i

    def find_kth_element(self, k):
        data = self.data; size = self.size
        x, sx = 0, 0
        dx = 1 << (self.depth)
        for i in range(self.depth - 1, -1, -1):
            dx = (1 << i)
            if x + dx >= size:
                continue
            y = x + dx
            sy = sx + data[y]
            if sy < k:
                x, sx = y, sy
        return x + 1


N, M = map(int, readline().split())
m = map(int, read().split())
LR = []
for L, R in zip(m, m):
    if L > R:
        L, R = R, L
    LR.append((L + 1, R + 1))
LR.sort()

bit = BinaryIndexedTree([0] * (M + 10))
answer = 0
for L, R in LR:
    answer += bit.get_sum(R) - bit.get_sum(L)
    bit.add(R, 1)
print(answer)
0