結果

問題 No.743 Segments on a Polygon
ユーザー brthyyjpbrthyyjp
提出日時 2022-03-08 15:36:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 466 ms / 2,000 ms
コード長 1,612 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 87,108 KB
実行使用メモリ 101,968 KB
最終ジャッジ日時 2023-09-30 21:47:00
合計ジャッジ時間 5,939 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 455 ms
100,968 KB
testcase_01 AC 452 ms
101,280 KB
testcase_02 AC 453 ms
100,972 KB
testcase_03 AC 458 ms
101,968 KB
testcase_04 AC 458 ms
101,804 KB
testcase_05 AC 460 ms
101,772 KB
testcase_06 AC 463 ms
100,976 KB
testcase_07 AC 450 ms
101,128 KB
testcase_08 AC 466 ms
101,176 KB
testcase_09 AC 235 ms
94,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT:
    def __init__(self, n):
        self.n = n
        self.bit = [0]*(self.n+1) # 1-indexed

    def init(self, init_val):
        for i, v in enumerate(init_val):
            self.add(i, v)

    def add(self, i, x):
        # i: 0-indexed
        i += 1 # to 1-indexed
        while i <= self.n:
            self.bit[i] += x
            i += (i & -i)

    def sum(self, i, j):
        # return sum of [i, j)
        # i, j: 0-indexed
        return self._sum(j) - self._sum(i)

    def _sum(self, i):
        # return sum of [0, i)
        # i: 0-indexed
        res = 0
        while i > 0:
            res += self.bit[i]
            i -= i & (-i)
        return res

    def lower_bound(self, x):
        s = 0
        pos = 0
        depth = self.n.bit_length()
        v = 1 << depth
        for i in range(depth, -1, -1):
            k = pos + v
            if k <= self.n and s + self.bit[k] < x:
                    s += self.bit[k]
                    pos += v
            v >>= 1
        return pos

    def __str__(self): # for debug
        arr = [self.sum(i,i+1) for i in range(self.n)]
        return str(arr)

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

from itertools import accumulate

n, m = map(int, input().split())
Q = []
for i in range(n):
    l, r = map(int, input().split())
    if l > r:
        l, r = r, l
    Q.append((l, -1))
    Q.append((r, l))

Q.sort(key=lambda x: x[0])
bit = BIT(m+1)
ans = 0
for x, y in Q:
    if y == -1:
        bit.add(x, 1)
    else:
        ans += bit.sum(y+1, bit.n)
        bit.add(y, -1)
print(ans)
0