結果

問題 No.1557 Binary Variable
ユーザー ygd.ygd.
提出日時 2021-06-29 19:58:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,009 ms / 2,000 ms
コード長 1,940 bytes
コンパイル時間 330 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 215,848 KB
最終ジャッジ日時 2024-06-25 22:23:45
合計ジャッジ時間 28,092 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 370 ms
155,060 KB
testcase_01 AC 415 ms
113,940 KB
testcase_02 AC 48 ms
52,480 KB
testcase_03 AC 42 ms
52,864 KB
testcase_04 AC 423 ms
89,660 KB
testcase_05 AC 425 ms
89,148 KB
testcase_06 AC 398 ms
89,192 KB
testcase_07 AC 415 ms
89,052 KB
testcase_08 AC 488 ms
89,848 KB
testcase_09 AC 509 ms
89,164 KB
testcase_10 AC 638 ms
106,636 KB
testcase_11 AC 645 ms
108,336 KB
testcase_12 AC 486 ms
89,340 KB
testcase_13 AC 654 ms
108,992 KB
testcase_14 AC 949 ms
192,012 KB
testcase_15 AC 675 ms
112,896 KB
testcase_16 AC 992 ms
189,892 KB
testcase_17 AC 833 ms
162,224 KB
testcase_18 AC 790 ms
151,204 KB
testcase_19 AC 991 ms
215,848 KB
testcase_20 AC 1,009 ms
214,292 KB
testcase_21 AC 993 ms
214,228 KB
testcase_22 AC 988 ms
215,492 KB
testcase_23 AC 990 ms
214,540 KB
testcase_24 AC 1,001 ms
214,668 KB
testcase_25 AC 993 ms
215,008 KB
testcase_26 AC 983 ms
214,524 KB
testcase_27 AC 952 ms
209,988 KB
testcase_28 AC 970 ms
210,340 KB
testcase_29 AC 955 ms
210,176 KB
testcase_30 AC 957 ms
210,192 KB
testcase_31 AC 959 ms
209,968 KB
testcase_32 AC 973 ms
210,380 KB
testcase_33 AC 965 ms
207,608 KB
testcase_34 AC 42 ms
52,224 KB
testcase_35 AC 41 ms
52,224 KB
testcase_36 AC 42 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

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 = []
    S = set([])
    for _ in range(M):
        l,r = map(int,input().split())
        l-=1;r-=1 #0-index
        Z.append((l,r))
        S.add(l)
        S.add(r)
    Z.sort(key = lambda x: x[1])
    val = 0
    dic = {}
    S = list(S); S.sort()
    for s in S:
        dic[s] = val
        val += 1
    NN = len(S)
    A = [1]*NN
    Tree = SegmentTree(A,segfunc,1)
    for i in range(M):
        l,r = Z[i]
        nl = dic[l]
        nr = dic[r]
        if Tree.sum(nl,nr+1) == 1:
            Tree.update(nr,0)
    ans = N
    for i in range(NN):
        if Tree.__getitem__(i) == 0:
            ans -= 1
    #print(dic)
    print(ans)


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