結果

問題 No.2796 Small Matryoshka
ユーザー ああいいああいい
提出日時 2024-06-29 11:59:02
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 919 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 106,568 KB
最終ジャッジ日時 2024-06-29 11:59:14
合計ジャッジ時間 10,664 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,736 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 36 ms
52,480 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 WA -
testcase_05 AC 146 ms
78,044 KB
testcase_06 AC 622 ms
86,612 KB
testcase_07 AC 41 ms
53,376 KB
testcase_08 AC 462 ms
84,308 KB
testcase_09 AC 966 ms
105,932 KB
testcase_10 AC 954 ms
106,316 KB
testcase_11 AC 911 ms
106,568 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 #

"""
N = int(input())
l = []
for _ in range(N):
    r,R = map(int,input().split())
    l.append((R,r))
l.sort()
dp = [0] * N
m = [0] * N
dp[0] = 1
m[0] = 1
for i in range(1,N):
    R,r = l[i]
    start = 0
    if l[start][0] > r:
        dp[i] = 1
        m[i] = m[i-1]
    else:
        end = i
        while end - start > 1:
            mid = end + start >> 1
            if l[mid][0] <= r:
                start = mid
            else:
                end = mid
        dp[i] = m[start] + 1
        m[i] = max(dp[i],m[i-1])
print(N - m[-1])
"""
N = int(input())
l = []
q = []
for _ in range(N):
    r,R = map(int,input().split())
    l.append((R,r))
l.sort()
import heapq
ans = 0
for R,r in l:
    while q:
        RR,rr = heapq.heappop(q)
        if RR <= r:
            r = rr
            ans += 1
        else:
            heapq.heappush(q,(RR,rr))
            break
    heapq.heappush(q,(R,r))
print(N - 1 - ans)
0