結果

問題 No.2796 Small Matryoshka
ユーザー tktk_snsntktk_snsn
提出日時 2024-07-13 17:22:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 2,471 bytes
コンパイル時間 927 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 86,420 KB
最終ジャッジ日時 2024-07-13 17:22:26
合計ジャッジ時間 7,334 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
18,972 KB
testcase_01 AC 46 ms
12,032 KB
testcase_02 AC 48 ms
12,032 KB
testcase_03 AC 48 ms
11,900 KB
testcase_04 AC 47 ms
12,032 KB
testcase_05 AC 440 ms
25,172 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import chain
import sys
import os
import inspect
from operator import itemgetter
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

if os.getenv("TKTKLOCAL", False):
    def debug(*arg, sep=" ", end="\n"):
        print(*arg, sep=sep, end=end, file=sys.stderr)

    def debug_indent(*arg, sep=" ", end="\n", indent="    "):
        frame = inspect.currentframe().f_back
        par_func = inspect.getframeinfo(frame).function
        if par_func == "<module>":
            debug(*arg, sep=sep, end=end)
            return

        frame_stack = inspect.stack()
        if len(frame_stack) > 30:
            return

        depth = sum(f.function == par_func for f in frame_stack)
        debug(indent * (depth - 1), end="")
        debug(*arg, sep=sep, end=end)
else:
    def debug(*arg, **kwarg):
        pass

    def debug_indent(*arg, **kwarg):
        pass


class FenwickTree(object):
    def __init__(self, n):
        self.n = n
        self.log = n.bit_length()
        self.data = [0] * n

    def _sum(self, r):
        s = 0
        while r > 0:
            s += self.data[r - 1]
            r -= r & -r
        return s

    def add(self, p, x):
        """ a[p] += xを行う"""
        p += 1
        while p <= self.n:
            self.data[p - 1] += x
            p += p & -p

    def sum(self, l, r):
        """a[l] + a[l+1] + .. + a[r-1]を返す"""
        return self._sum(r) - self._sum(l)

    def lower_bound(self, x):
        """a[0] + a[1] + .. a[i] >= x となる最小のiを返す"""
        if x <= 0:
            return -1
        i = 0
        k = 1 << self.log
        while k:
            if i + k <= self.n and self.data[i + k - 1] < x:
                x -= self.data[i + k - 1]
                i += k
            k >>= 1
        return i

    def __repr__(self):
        res = [self.sum(i, i+1) for i in range(self.n)]
        return " ".join(map(str, res))



def main():
    N = int(input())
    M = list(tuple(map(int, input().split())) for _ in range(N))
    M.sort(key=itemgetter(1, 0))

    R = sorted(set(chain(*M)))
    rtoi = {r: i for i, r in enumerate(R)}
    bit = FenwickTree(len(rtoi) + 5)

    cnt = 0
    for s, t in M:
        s = rtoi[s]
        t = rtoi[t]

        f = bit.sum(0, s+1)
        if f == 0:
            cnt += 1
            bit.add(t, 1)
        else:
            i = bit.lower_bound(f)
            bit.add(i, -1)
            bit.add(t, 1)
    print(cnt - 1)

    
main()
0