結果

問題 No.1703 Much Matching
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-10-08 22:32:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,500 bytes
コンパイル時間 715 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 241,152 KB
最終ジャッジ日時 2024-07-23 05:31:39
合計ジャッジ時間 26,797 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,856 KB
testcase_01 AC 37 ms
52,608 KB
testcase_02 AC 37 ms
52,352 KB
testcase_03 AC 39 ms
53,120 KB
testcase_04 AC 50 ms
64,384 KB
testcase_05 AC 45 ms
60,800 KB
testcase_06 AC 1,303 ms
122,368 KB
testcase_07 AC 122 ms
78,748 KB
testcase_08 AC 1,388 ms
124,044 KB
testcase_09 AC 1,573 ms
130,944 KB
testcase_10 AC 237 ms
83,744 KB
testcase_11 AC 326 ms
88,216 KB
testcase_12 AC 115 ms
78,488 KB
testcase_13 AC 584 ms
97,300 KB
testcase_14 AC 87 ms
76,800 KB
testcase_15 AC 287 ms
85,504 KB
testcase_16 AC 830 ms
105,796 KB
testcase_17 AC 966 ms
110,812 KB
testcase_18 AC 84 ms
76,672 KB
testcase_19 TLE -
testcase_20 AC 270 ms
85,120 KB
testcase_21 TLE -
testcase_22 AC 936 ms
109,080 KB
testcase_23 AC 704 ms
100,992 KB
testcase_24 AC 86 ms
76,800 KB
testcase_25 AC 135 ms
79,800 KB
testcase_26 AC 449 ms
93,056 KB
testcase_27 AC 1,049 ms
114,244 KB
testcase_28 TLE -
testcase_29 AC 359 ms
89,216 KB
testcase_30 AC 541 ms
95,360 KB
testcase_31 AC 108 ms
78,476 KB
testcase_32 AC 1,062 ms
113,840 KB
testcase_33 AC 680 ms
101,120 KB
testcase_34 AC 116 ms
78,464 KB
testcase_35 AC 203 ms
82,892 KB
testcase_36 TLE -
testcase_37 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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):
    if x > y:
        return x
    return 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