結果

問題 No.2796 Small Matryoshka
ユーザー tktk_snsntktk_snsn
提出日時 2024-07-13 17:22:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,365 ms / 2,000 ms
コード長 2,471 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 82,356 KB
実行使用メモリ 246,992 KB
最終ジャッジ日時 2024-07-13 17:22:57
合計ジャッジ時間 14,379 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
73,952 KB
testcase_01 AC 82 ms
73,216 KB
testcase_02 AC 75 ms
73,280 KB
testcase_03 AC 74 ms
73,712 KB
testcase_04 AC 74 ms
73,912 KB
testcase_05 AC 274 ms
107,456 KB
testcase_06 AC 1,258 ms
246,992 KB
testcase_07 AC 81 ms
76,368 KB
testcase_08 AC 907 ms
160,112 KB
testcase_09 AC 1,313 ms
212,360 KB
testcase_10 AC 1,365 ms
213,900 KB
testcase_11 AC 1,337 ms
225,300 KB
testcase_12 AC 517 ms
102,520 KB
testcase_13 AC 156 ms
81,964 KB
testcase_14 AC 460 ms
96,788 KB
testcase_15 AC 210 ms
84,824 KB
testcase_16 AC 276 ms
89,228 KB
testcase_17 AC 917 ms
197,932 KB
testcase_18 AC 1,019 ms
174,704 KB
testcase_19 AC 360 ms
119,308 KB
testcase_20 AC 479 ms
135,088 KB
testcase_21 AC 931 ms
197,572 KB
権限があれば一括ダウンロードができます

ソースコード

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