結果

問題 No.1703 Much Matching
ユーザー ygd.ygd.
提出日時 2021-10-10 11:40:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 830 ms / 2,000 ms
コード長 2,179 bytes
コンパイル時間 234 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 167,552 KB
最終ジャッジ日時 2024-09-14 05:57:37
合計ジャッジ時間 9,145 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,016 KB
testcase_01 AC 41 ms
53,888 KB
testcase_02 AC 46 ms
54,016 KB
testcase_03 AC 48 ms
54,656 KB
testcase_04 AC 58 ms
65,536 KB
testcase_05 AC 50 ms
61,936 KB
testcase_06 AC 273 ms
92,544 KB
testcase_07 AC 101 ms
77,564 KB
testcase_08 AC 295 ms
93,584 KB
testcase_09 AC 330 ms
97,664 KB
testcase_10 AC 118 ms
78,720 KB
testcase_11 AC 141 ms
80,548 KB
testcase_12 AC 94 ms
77,464 KB
testcase_13 AC 177 ms
83,252 KB
testcase_14 AC 85 ms
76,384 KB
testcase_15 AC 133 ms
80,012 KB
testcase_16 AC 208 ms
86,668 KB
testcase_17 AC 230 ms
88,076 KB
testcase_18 AC 85 ms
76,696 KB
testcase_19 AC 402 ms
106,992 KB
testcase_20 AC 122 ms
79,200 KB
testcase_21 AC 471 ms
113,920 KB
testcase_22 AC 227 ms
87,680 KB
testcase_23 AC 200 ms
85,504 KB
testcase_24 AC 85 ms
76,448 KB
testcase_25 AC 105 ms
77,704 KB
testcase_26 AC 166 ms
82,176 KB
testcase_27 AC 244 ms
90,020 KB
testcase_28 AC 400 ms
104,924 KB
testcase_29 AC 153 ms
80,768 KB
testcase_30 AC 172 ms
82,688 KB
testcase_31 AC 107 ms
77,468 KB
testcase_32 AC 243 ms
90,368 KB
testcase_33 AC 198 ms
84,928 KB
testcase_34 AC 98 ms
77,312 KB
testcase_35 AC 119 ms
78,592 KB
testcase_36 AC 830 ms
167,552 KB
testcase_37 AC 77 ms
69,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline
input = sys.stdin.buffer.readline
from collections import defaultdict 

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 main():
    N,M,Q = map(int,input().split())
    G = [[] for _ in range(Q)]
    #L = []
    dic = defaultdict(list)
    for i in range(Q):
        a,b = map(int,input().split())
        #a -= 1; b -= 1
        #L.append((a,b)) #man,woman,index
        dic[a].append(b)
    #print(dic)
    KEY = list(dic.keys())
    KEY.sort()
    Tree = SegmentTree([0]*(M+1),max,0) #womanがyの時の最大値
    for x in KEY:
        L = sorted(dic[x])
        #print(L)
        val = []
        #if len(L) == 0: continue
        for y in L:
            temp = max(Tree.sum(0,y) + 1, Tree.__getitem__(y))
            #print(val)
            val.append(temp)
        for i in range(len(val)):
            y = L[i]
            v = val[i]
            Tree.update(y,v)
    ans = 0
    for i in range(M+1):
        ans = max(ans,Tree.__getitem__(i))
    print(ans)
        

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