結果

問題 No.2796 Small Matryoshka
ユーザー h dh d
提出日時 2024-07-15 02:53:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,012 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 147,824 KB
最終ジャッジ日時 2024-07-15 02:54:05
合計ジャッジ時間 11,184 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,004 KB
testcase_01 AC 40 ms
54,176 KB
testcase_02 AC 38 ms
52,680 KB
testcase_03 AC 39 ms
52,992 KB
testcase_04 WA -
testcase_05 AC 254 ms
85,152 KB
testcase_06 AC 775 ms
142,876 KB
testcase_07 AC 45 ms
59,672 KB
testcase_08 AC 613 ms
131,268 KB
testcase_09 AC 634 ms
140,368 KB
testcase_10 AC 794 ms
147,824 KB
testcase_11 AC 803 ms
147,476 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #


def merge(left,right):
    sl=[]
    l=0
    r=0
    while l<len(left) and r<len(right):
        if left[l][0]<=right[r][0] or (left[l][0]==right[r][0] and left[l][1]<=right[r][1]):
            sl.append(left[l])
            l+=1
        else:
            sl.append(right[r])
            r+=1
    if len(left)!=l:
        sl.extend(left[l:])
    if len(right)!=r:
        sl.extend(right[r:])
    return sl

def msort(L):
    if len(L)<=1:
        return L
    mid=len(L)//2
    left=msort(L[:mid])
    right=msort(L[mid:])
    return list(merge(left,right))


n=int(input())
ab=[]
for i in range(n):
    ab.append(tuple(map(int,input().split())))

lis=msort(ab)
ul=[0]
li=[0 for i in range(n)]
li[0]=1
for i in range(0,n):
    u=len(ul)
    d=0
    while u-d>1:
        mid=(u+d)//2
        if ul[mid]<=lis[i][0]:
            d=mid
        else:
            u=mid
    if d+1==len(ul):
        ul.append(lis[i][1])
    li[i]=d+1
    ul[d+1]=min(ul[d+1],lis[i][1])
    #print(ul)
    #print(li)
print(n-max(li))
0