結果

問題 No.1703 Much Matching
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-10-08 22:29:50
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,437 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 243,004 KB
最終ジャッジ日時 2024-07-23 05:13:57
合計ジャッジ時間 29,002 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
60,108 KB
testcase_01 AC 38 ms
52,592 KB
testcase_02 AC 37 ms
52,820 KB
testcase_03 AC 40 ms
54,152 KB
testcase_04 AC 58 ms
66,888 KB
testcase_05 AC 49 ms
61,852 KB
testcase_06 AC 1,413 ms
122,636 KB
testcase_07 AC 142 ms
79,008 KB
testcase_08 AC 1,491 ms
124,024 KB
testcase_09 AC 1,686 ms
132,824 KB
testcase_10 AC 276 ms
84,228 KB
testcase_11 AC 370 ms
88,572 KB
testcase_12 AC 134 ms
79,036 KB
testcase_13 AC 648 ms
97,964 KB
testcase_14 AC 102 ms
77,296 KB
testcase_15 AC 314 ms
86,036 KB
testcase_16 AC 917 ms
106,272 KB
testcase_17 AC 1,041 ms
111,160 KB
testcase_18 AC 102 ms
77,072 KB
testcase_19 TLE -
testcase_20 AC 316 ms
85,572 KB
testcase_21 TLE -
testcase_22 AC 996 ms
109,600 KB
testcase_23 AC 758 ms
101,288 KB
testcase_24 AC 99 ms
77,464 KB
testcase_25 AC 160 ms
79,976 KB
testcase_26 AC 518 ms
92,604 KB
testcase_27 AC 1,144 ms
114,288 KB
testcase_28 TLE -
testcase_29 AC 416 ms
89,588 KB
testcase_30 AC 600 ms
96,140 KB
testcase_31 AC 128 ms
78,268 KB
testcase_32 AC 1,170 ms
114,360 KB
testcase_33 AC 749 ms
101,672 KB
testcase_34 AC 136 ms
78,764 KB
testcase_35 AC 239 ms
83,460 KB
testcase_36 TLE -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegTree:
    """ define what you want to do with 0 index, ex) size = tree_size, func = min or max, sta = default_value """
    
    def __init__(self,size,func,sta):
        self.n = size
        self.size = 1 << size.bit_length()
        self.func = func
        self.sta = sta
        self.tree = [sta]*(2*self.size)

    def build(self, list):
        """ set list and update tree"""
        for i,x in enumerate(list,self.size):
            self.tree[i] = x

        for i in range(self.size-1,0,-1):
            self.tree[i] = self.func(self.tree[i<<1],self.tree[i<<1 | 1])

    def set(self,i,x):
        i += self.size
        self.tree[i] = x
        while i > 1:
            i >>= 1
            self.tree[i] = self.func(self.tree[i<<1],self.tree[i<<1 | 1])

    
    def get(self,l,r):
        """ take the value of [l r) with func (min or max)"""
        l += self.size
        r += self.size
        res = self.sta

        while l < r:
            if l & 1:
                res = self.func(self.tree[l],res)
                l += 1
            if r & 1:
                res = self.func(self.tree[r-1],res)
            l >>= 1
            r >>= 1
        return res

n,m,q = map(int,input().split())
AB = [list(map(int,input().split())) for i in range(q)]
AB.sort(key=lambda x:(x[0],-x[1]))

def func(x,y):
    return max(x,y)

seg = SegTree(m+5,func,0)

for a,b in AB:
    seg.set(b,seg.get(0,b)+1)
print(seg.get(0,m+2))
0