結果

問題 No.1995 CHIKA Road
ユーザー tassei903tassei903
提出日時 2022-07-01 22:45:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 630 ms / 2,000 ms
コード長 1,863 bytes
コンパイル時間 366 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 160,672 KB
最終ジャッジ日時 2024-11-26 06:20:43
合計ジャッジ時間 12,662 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,624 KB
testcase_01 AC 39 ms
52,684 KB
testcase_02 AC 40 ms
54,168 KB
testcase_03 AC 41 ms
53,940 KB
testcase_04 AC 41 ms
53,164 KB
testcase_05 AC 52 ms
62,664 KB
testcase_06 AC 136 ms
80,940 KB
testcase_07 AC 212 ms
89,936 KB
testcase_08 AC 57 ms
65,228 KB
testcase_09 AC 54 ms
64,500 KB
testcase_10 AC 369 ms
96,708 KB
testcase_11 AC 630 ms
160,672 KB
testcase_12 AC 330 ms
124,228 KB
testcase_13 AC 249 ms
109,316 KB
testcase_14 AC 273 ms
110,024 KB
testcase_15 AC 551 ms
139,760 KB
testcase_16 AC 164 ms
84,668 KB
testcase_17 AC 335 ms
117,308 KB
testcase_18 AC 518 ms
137,672 KB
testcase_19 AC 534 ms
137,808 KB
testcase_20 AC 321 ms
113,696 KB
testcase_21 AC 290 ms
101,008 KB
testcase_22 AC 464 ms
136,796 KB
testcase_23 AC 215 ms
91,240 KB
testcase_24 AC 462 ms
123,608 KB
testcase_25 AC 170 ms
85,536 KB
testcase_26 AC 233 ms
99,224 KB
testcase_27 AC 434 ms
126,592 KB
testcase_28 AC 293 ms
101,016 KB
testcase_29 AC 488 ms
141,244 KB
testcase_30 AC 166 ms
85,220 KB
testcase_31 AC 140 ms
80,152 KB
testcase_32 AC 179 ms
87,476 KB
testcase_33 AC 406 ms
128,400 KB
testcase_34 AC 140 ms
81,160 KB
testcase_35 AC 230 ms
97,144 KB
testcase_36 AC 250 ms
101,464 KB
testcase_37 AC 457 ms
136,204 KB
testcase_38 AC 367 ms
113,172 KB
testcase_39 AC 128 ms
79,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################


class DualSegmentTree:
    def __init__(self, size, f, default):
        self.n = (size-1).bit_length()
        self.size = 1<<self.n
        self.default = default
        self.lazy = [default]*(self.size*2)
        self.f = f

    def propagate(self, k):
        lazy = self.lazy
        if lazy[k] != self.default:
            lazy[2*k] = self.f(lazy[2*k], lazy[k])
            lazy[2*k+1] = self.f(lazy[2*k+1], lazy[k])
            lazy[k] = self.default

    def thrust(self, k):
        for i in range(self.n,0,-1):
            self.propagate(k>>i)

    def update(self, a, b, x):
        a += self.size
        b += self.size-1
        self.thrust(a)
        self.thrust(b)
        l = a
        r = b + 1
        lazy = self.lazy
        while l < r:
            if l & 1:
                lazy[l] = self.f(lazy[l], x)
                l += 1
            if r & 1:
                r -= 1
                lazy[r] = self.f(lazy[r], x)
            l >>= 1
            r >>= 1
    
    def get(self, k):
        k += self.size
        self.thrust(k)
        return self.lazy[k]
n,m = na()
g = [na() for i in range(m)]
s = set()
for i in range(m):
    s.add(g[i][0])
    s.add(g[i][1])

d = {x:i for i, x in enumerate(sorted(s))}
for i in range(m):
    g[i] = [d[g[i][0]],d[g[i][1]]]
g = sorted(g,key = lambda x:x[1])

k = len(s)
inf = float("inf")
st = DualSegmentTree(k+1,max,-inf)
st.update(0,k+1,0)
for i in range(m):
    l,r = g[i]
    x = st.get(l)
    st.update(r,k+1,x + 1)
print(2*(n-1)-st.get(k))
0