結果

問題 No.1995 CHIKA Road
ユーザー ygd.ygd.
提出日時 2022-07-01 22:10:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 464 ms / 2,000 ms
コード長 2,734 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 171,196 KB
最終ジャッジ日時 2024-05-04 16:33:13
合計ジャッジ時間 10,702 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,480 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 37 ms
52,480 KB
testcase_03 AC 35 ms
52,096 KB
testcase_04 AC 38 ms
53,120 KB
testcase_05 AC 46 ms
59,776 KB
testcase_06 AC 115 ms
80,264 KB
testcase_07 AC 177 ms
95,616 KB
testcase_08 AC 45 ms
61,508 KB
testcase_09 AC 41 ms
59,904 KB
testcase_10 AC 262 ms
84,224 KB
testcase_11 AC 464 ms
171,196 KB
testcase_12 AC 271 ms
124,032 KB
testcase_13 AC 204 ms
105,292 KB
testcase_14 AC 219 ms
107,636 KB
testcase_15 AC 418 ms
164,284 KB
testcase_16 AC 130 ms
84,480 KB
testcase_17 AC 289 ms
117,368 KB
testcase_18 AC 394 ms
122,916 KB
testcase_19 AC 392 ms
123,048 KB
testcase_20 AC 263 ms
112,876 KB
testcase_21 AC 243 ms
107,508 KB
testcase_22 AC 395 ms
130,416 KB
testcase_23 AC 185 ms
95,872 KB
testcase_24 AC 348 ms
128,008 KB
testcase_25 AC 144 ms
85,760 KB
testcase_26 AC 197 ms
101,248 KB
testcase_27 AC 344 ms
126,860 KB
testcase_28 AC 242 ms
107,504 KB
testcase_29 AC 382 ms
135,328 KB
testcase_30 AC 137 ms
86,144 KB
testcase_31 AC 115 ms
79,616 KB
testcase_32 AC 158 ms
88,852 KB
testcase_33 AC 421 ms
125,860 KB
testcase_34 AC 145 ms
80,768 KB
testcase_35 AC 238 ms
96,896 KB
testcase_36 AC 223 ms
99,700 KB
testcase_37 AC 402 ms
132,324 KB
testcase_38 AC 296 ms
115,456 KB
testcase_39 AC 118 ms
79,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
#input = sys.stdin.buffer.readline #文字列はダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
#from collections import defaultdict 
#from collections import deque
#import copy
#import math
#from functools import lru_cache
#@lru_cache(maxsize=None)
#MOD = pow(10,9) + 7
#MOD = 998244353
#dx = [1,0,-1,0]
#dy = [0,1,0,-1]
#dx8 = [1,1,0,-1,-1,-1,0,1]
#dy8 = [0,1,1,1,0,-1,-1,-1]

#和のセグ木にするときは以下の関数を定義する必要あり。
def segfunc(x,y):
  return x+y

class SegmentTree(object):
    def __init__(self, A, dot, unit):
        n = 1 << (len(A) - 1).bit_length()
        tree = [unit] * (2 * n)
        for i, v in enumerate(A):
            tree[i + n] = v
        for i in range(n - 1, 0, -1):
            tree[i] = dot(tree[i << 1], tree[i << 1 | 1])
        self._n = n
        self._tree = tree
        self._dot = dot
        self._unit = unit

    def __getitem__(self, i):
        return self._tree[i + self._n]

    def update(self, i, v):
        i += self._n
        self._tree[i] = v
        while i != 1:
            i >>= 1
            self._tree[i] = self._dot(self._tree[i << 1], self._tree[i << 1 | 1])

    def add(self, i, v):
        self.update(i, self[i] + v)

    def sum(self, l, r): #これで[l,r)から取り出す。
        l += self._n
        r += self._n
        l_val = r_val = self._unit
        while l < r:
            if l & 1:
                l_val = self._dot(l_val, self._tree[l])
                l += 1
            if r & 1:
                r -= 1
                r_val = self._dot(self._tree[r], r_val)
            l >>= 1
            r >>= 1
        return self._dot(l_val, r_val)

def compress(S):
    S = set(S); S = list(S)
    S.sort()
    dic_comp_ori = {}
    dic_ori_comp = {}
    for i,a in enumerate(S):
        dic_ori_comp[a] = i
        dic_comp_ori[i] = a
    return dic_comp_ori, dic_ori_comp 

def main():
    N,M = map(int,input().split()); INF = pow(10,18)
    roads = []
    S = set([])
    for _ in range(M):
        A,B = map(int,input().split())
        S.add(A)
        S.add(B)
        roads.append((A,B))

    dic_comp_ori, dic_ori_comp = compress(S)
    for i,road in enumerate(roads):
        a = dic_ori_comp[road[0]]
        b = dic_ori_comp[road[1]]
        roads[i] = (a,b)
    oriN = N
    N = len(dic_ori_comp)
    roads.sort(key=lambda x: x[1])
    #print(roads)
    
    Tree = SegmentTree([0]*N,max,0)
    for s,t in roads:
        v = Tree.sum(0,s+1) + 1 #[0,s]
        Tree.update(t, max(Tree[t],v))
    
    ans = (oriN-1)*2 - Tree.sum(0,N)
    print(ans)

if __name__ == '__main__':
    main()
0