結果

問題 No.1557 Binary Variable
ユーザー ygd.ygd.
提出日時 2021-06-29 19:51:16
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,685 bytes
コンパイル時間 264 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 849,428 KB
最終ジャッジ日時 2024-06-25 22:13:42
合計ジャッジ時間 19,972 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 AC 36 ms
54,236 KB
testcase_04 AC 368 ms
89,196 KB
testcase_05 AC 373 ms
89,428 KB
testcase_06 AC 341 ms
88,320 KB
testcase_07 AC 364 ms
89,284 KB
testcase_08 AC 425 ms
89,472 KB
testcase_09 AC 456 ms
89,900 KB
testcase_10 AC 491 ms
90,388 KB
testcase_11 AC 491 ms
90,632 KB
testcase_12 AC 423 ms
89,244 KB
testcase_13 AC 494 ms
90,644 KB
testcase_14 AC 602 ms
122,972 KB
testcase_15 AC 489 ms
90,764 KB
testcase_16 AC 580 ms
120,340 KB
testcase_17 AC 528 ms
100,552 KB
testcase_18 AC 524 ms
95,292 KB
testcase_19 AC 917 ms
419,996 KB
testcase_20 AC 673 ms
193,172 KB
testcase_21 AC 677 ms
190,612 KB
testcase_22 AC 758 ms
272,620 KB
testcase_23 AC 679 ms
189,072 KB
testcase_24 AC 1,000 ms
470,652 KB
testcase_25 AC 977 ms
452,504 KB
testcase_26 MLE -
testcase_27 MLE -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegmentTree(object):
    def __init__(self, A, dot, unit):
        n = 1 << (len(A) - 1).bit_length()
        tree = [unit] * (2 * n)
        for i, v in enumerate(A):
            tree[i + n] = v
        for i in range(n - 1, 0, -1):
            tree[i] = dot(tree[i << 1], tree[i << 1 | 1])
        self._n = n
        self._tree = tree
        self._dot = dot
        self._unit = unit

    def __getitem__(self, i):
        return self._tree[i + self._n]

    def update(self, i, v):
        i += self._n
        self._tree[i] = v
        while i != 1:
            i >>= 1
            self._tree[i] = self._dot(self._tree[i << 1], self._tree[i << 1 | 1])

    def add(self, i, v):
        self.update(i, self[i] + v)

    def sum(self, l, r): #これで[l,r)から取り出す。
        l += self._n
        r += self._n
        l_val = r_val = self._unit
        while l < r:
            if l & 1:
                l_val = self._dot(l_val, self._tree[l])
                l += 1
            if r & 1:
                r -= 1
                r_val = self._dot(self._tree[r], r_val)
            l >>= 1
            r >>= 1
        return self._dot(l_val, r_val)

def segfunc(x,y):
    return x*y

def main():
    N,M = map(int,input().split())
    Z = []
    for _ in range(M):
        l,r = map(int,input().split())
        l-=1;r-=1 #0-index
        Z.append((l,r))
    Z.sort(key = lambda x: x[1])
    A = [1]*N
    Tree = SegmentTree(A,segfunc,1)
    for i in range(M):
        l,r = Z[i]
        if Tree.sum(l,r+1) == 1:
            Tree.update(r,0)
    ans = 0
    for i in range(N):
        ans += Tree.__getitem__(i)
    print(ans)


if __name__ == '__main__':
    main()
0