結果

問題 No.2796 Small Matryoshka
ユーザー ああいいああいい
提出日時 2024-06-29 11:38:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 539 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 92,232 KB
最終ジャッジ日時 2024-06-29 11:39:05
合計ジャッジ時間 8,233 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,880 KB
testcase_01 AC 37 ms
52,444 KB
testcase_02 AC 39 ms
52,504 KB
testcase_03 AC 38 ms
52,612 KB
testcase_04 WA -
testcase_05 AC 142 ms
77,824 KB
testcase_06 AC 623 ms
89,148 KB
testcase_07 AC 43 ms
59,840 KB
testcase_08 AC 481 ms
86,100 KB
testcase_09 AC 683 ms
91,840 KB
testcase_10 AC 707 ms
92,232 KB
testcase_11 AC 716 ms
91,968 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])
0