結果

問題 No.1995 CHIKA Road
ユーザー titiatitia
提出日時 2022-07-01 21:59:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 401 ms / 2,000 ms
コード長 1,223 bytes
コンパイル時間 210 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 189,184 KB
最終ジャッジ日時 2024-11-26 04:59:02
合計ジャッジ時間 8,670 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 33 ms
51,968 KB
testcase_02 AC 36 ms
51,968 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 36 ms
52,352 KB
testcase_05 AC 44 ms
60,800 KB
testcase_06 AC 110 ms
79,872 KB
testcase_07 AC 159 ms
93,568 KB
testcase_08 AC 45 ms
62,208 KB
testcase_09 AC 46 ms
61,696 KB
testcase_10 AC 140 ms
100,224 KB
testcase_11 AC 401 ms
189,184 KB
testcase_12 AC 251 ms
145,664 KB
testcase_13 AC 181 ms
113,552 KB
testcase_14 AC 193 ms
113,792 KB
testcase_15 AC 373 ms
166,044 KB
testcase_16 AC 118 ms
84,608 KB
testcase_17 AC 227 ms
122,912 KB
testcase_18 AC 316 ms
122,828 KB
testcase_19 AC 315 ms
123,332 KB
testcase_20 AC 204 ms
101,356 KB
testcase_21 AC 200 ms
109,812 KB
testcase_22 AC 317 ms
138,524 KB
testcase_23 AC 163 ms
93,952 KB
testcase_24 AC 279 ms
137,600 KB
testcase_25 AC 133 ms
86,400 KB
testcase_26 AC 181 ms
99,072 KB
testcase_27 AC 279 ms
135,960 KB
testcase_28 AC 214 ms
109,456 KB
testcase_29 AC 317 ms
131,200 KB
testcase_30 AC 132 ms
86,292 KB
testcase_31 AC 105 ms
79,696 KB
testcase_32 AC 139 ms
89,844 KB
testcase_33 AC 260 ms
114,316 KB
testcase_34 AC 108 ms
80,000 KB
testcase_35 AC 156 ms
90,860 KB
testcase_36 AC 183 ms
104,704 KB
testcase_37 AC 305 ms
139,776 KB
testcase_38 AC 238 ms
123,648 KB
testcase_39 AC 104 ms
79,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M=map(int,input().split())

EX=[list(map(int,input().split())) for i in range(M)]

LIST=[]
for x,y in EX:
    LIST.append(x)
    LIST.append(y)

LIST=sorted(set(LIST))
D={LIST[i]:i for i in range(len(LIST))}

E=[[] for i in range(len(LIST))]

for x,y in EX:
    E[D[x]].append(D[y])

def seg_function(x,y): # Segment treeで扱うfunction
    return max(x,y)

seg_el=1<<(len(LIST).bit_length()) # Segment treeの台の要素数
SEG=[0]*(2*seg_el) # 1-indexedなので、要素数2*seg_el.Segment treeの初期値で初期化

def update(n,x,seg_el): # A[n]をxへ更新
    i=n+seg_el
    SEG[i]=x
    i>>=1 # 子ノードへ
    
    while i!=0:
        SEG[i]=seg_function(SEG[i*2],SEG[i*2+1])
        i>>=1
        
def getvalues(l,r): # 区間[l,r)に関するseg_functionを調べる
    L=l+seg_el
    R=r+seg_el
    ANS=0

    while L<R:
        if L & 1:
            ANS=seg_function(ANS , SEG[L])
            L+=1

        if R & 1:
            R-=1
            ANS=seg_function(ANS , SEG[R])
        L>>=1
        R>>=1

    return ANS

for i in range(len(LIST)):
    k=getvalues(0,i+1)
    
    for to in E[i]:
        update(to,k+1,seg_el)

ANS=SEG[1]

print(N*2-2-ANS)
0