結果

問題 No.2796 Small Matryoshka
ユーザー moon17moon17
提出日時 2024-06-28 22:44:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,123 ms / 2,000 ms
コード長 2,438 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 116,036 KB
最終ジャッジ日時 2024-06-28 22:45:07
合計ジャッジ時間 12,719 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 43 ms
52,736 KB
testcase_02 AC 42 ms
52,608 KB
testcase_03 AC 41 ms
52,608 KB
testcase_04 AC 44 ms
52,736 KB
testcase_05 AC 176 ms
81,152 KB
testcase_06 AC 822 ms
103,260 KB
testcase_07 AC 42 ms
53,880 KB
testcase_08 AC 610 ms
97,664 KB
testcase_09 AC 1,123 ms
112,324 KB
testcase_10 AC 1,018 ms
113,316 KB
testcase_11 AC 1,052 ms
116,036 KB
testcase_12 AC 675 ms
99,168 KB
testcase_13 AC 303 ms
82,620 KB
testcase_14 AC 620 ms
96,484 KB
testcase_15 AC 365 ms
83,736 KB
testcase_16 AC 417 ms
87,076 KB
testcase_17 AC 958 ms
108,720 KB
testcase_18 AC 983 ms
111,140 KB
testcase_19 AC 498 ms
89,584 KB
testcase_20 AC 594 ms
93,060 KB
testcase_21 AC 974 ms
107,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect_left as lower_bound
from bisect import bisect_right as upper_bound
class FenwickTree:
 def __init__(self,x):
  bit=self.bit=list(x)
  size=self.size=len(bit)
  for i in range(size):
   j=i|(i+1)
   if j<size:
    bit[j]+=bit[i]

 def update(self,idx,x):
  """updates bit[idx]+=x"""
  while idx<self.size:
   self.bit[idx]+=x
   idx|=idx+1

 def __call__(self,end):
  """calc sum(bit[:end])"""
  x=0
  while end:
   x+=self.bit[end-1]
   end&=end-1
  return x

 def find_kth(self,k):
  """Find largest idx such that sum(bit[:idx])<=k"""
  idx=-1
  for d in reversed(range(self.size.bit_length())):
   right_idx=idx+(1<<d)
   if right_idx<self.size and self.bit[right_idx]<=k:
    idx=right_idx
    k-=self.bit[idx]
  return idx+1,k


class SortedList:
 block_size=700

 def __init__(self,iterable=()):
  self.macro=[]
  self.micros=[[]]
  self.micro_size=[0]
  self.fenwick=FenwickTree([0])
  self.size=0
  for item in iterable:
   self.insert(item)

 def insert(self,x):
  i=lower_bound(self.macro,x)
  j=upper_bound(self.micros[i],x)
  self.micros[i].insert(j,x)
  self.size+=1
  self.micro_size[i]+=1
  self.fenwick.update(i,1)
  if len(self.micros[i]) >= self.block_size:
   self.micros[i:i+1]=self.micros[i][:self.block_size >> 1],self.micros[i][self.block_size >> 1:]
   self.micro_size[i:i+1]=self.block_size >> 1,self.block_size >> 1
   self.fenwick=FenwickTree(self.micro_size)
   self.macro.insert(i,self.micros[i+1][0])

 def pop(self,k=-1):
  i,j=self._find_kth(k)
  self.size-=1
  self.micro_size[i]-=1
  self.fenwick.update(i,-1)
  return self.micros[i].pop(j)

 def __getitem__(self,k):
  i,j=self._find_kth(k)
  return self.micros[i][j]

 def count(self,x):
  return self.upper_bound(x)-self.lower_bound(x)

 def __contains__(self,x):
  return self.count(x)>0

 def lower_bound(self,x):
  i=lower_bound(self.macro,x)
  return self.fenwick(i)+lower_bound(self.micros[i],x)

 def upper_bound(self,x):
  i=upper_bound(self.macro,x)
  return self.fenwick(i)+upper_bound(self.micros[i],x)

 def _find_kth(self,k):
  return self.fenwick.find_kth(k+self.size if k<0 else k)

 def __len__(self):
  return self.size

 def __iter__(self):
  return (x for micro in self.micros for x in micro)

 def __repr__(self):
  return str(list(self))
(n,),*e=[[*map(int,s.split())]for s in open(0)]
p=SortedList()
for r,R in sorted(e):
  i=p.upper_bound(r)-1
  if 0<=i<len(p):
    p.pop(i)
  p.insert(R)
print(len(p)-1)
0