結果

問題 No.743 Segments on a Polygon
ユーザー convexineqconvexineq
提出日時 2021-03-21 18:12:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 518 ms / 2,000 ms
コード長 1,553 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 86,928 KB
実行使用メモリ 88,256 KB
最終ジャッジ日時 2023-08-14 14:27:52
合計ジャッジ時間 7,974 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 511 ms
87,952 KB
testcase_01 AC 513 ms
88,256 KB
testcase_02 AC 504 ms
87,984 KB
testcase_03 AC 515 ms
87,736 KB
testcase_04 AC 513 ms
88,204 KB
testcase_05 AC 515 ms
88,148 KB
testcase_06 AC 513 ms
87,944 KB
testcase_07 AC 518 ms
88,008 KB
testcase_08 AC 516 ms
87,900 KB
testcase_09 AC 264 ms
87,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class segment_tree:
    __slots__ = ["op_M", "e_M","N","N0","dat"]
    def __init__(self, N, operator_M, e_M):
        self.op_M = operator_M
        self.e_M = e_M
        self.N = N
        self.N0 = 1<<(N-1).bit_length()
        self.dat = [self.e_M]*(2*self.N0)
    
    # 長さNの配列 initial で初期化
    def build(self, initial):
        assert self.N == len(initial)
        self.dat[self.N0:self.N0+len(initial)] = initial[:]
        for k in range(self.N0-1,0,-1):
            self.dat[k] = self.op_M(self.dat[2*k], self.dat[2*k+1])

    # a_k の値を x に更新
    def update(self,k,x):
        k += self.N0
        self.dat[k] = x
        k >>= 1
        while k:
            self.dat[k] = self.op_M(self.dat[2*k], self.dat[2*k+1])
            k >>= 1

    # 区間[L,R]をopでまとめる
    def query(self,L,R):
        L += self.N0; R += self.N0 + 1 
        sl = sr = self.e_M
        while L < R:
            if R & 1:
                R -= 1
                sr = self.op_M(self.dat[R],sr)
            if L & 1:
                sl = self.op_M(sl,self.dat[L])
                L += 1
            L >>= 1; R >>= 1
        return self.op_M(sl,sr)

    def get(self, k): #k番目の値を取得。query[k,k]と同じ
        return self.dat[k+self.N0]


n,m = map(int,input().split())
ab = []
for _ in range(n):
    a,b = sorted(map(int,input().split()))
    ab.append((a,b))
ab.sort()
ans = 0
from operator import add
seg = segment_tree(m,add,0)
for a,b in ab:
    x = seg.query(a,b)
    ans += x
    seg.update(b,1)
print(ans)
0